You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::KinesisAnalyticsV2::Types::ApplicationCodeConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ApplicationCodeConfiguration as input to an Aws::Client method, you can use a vanilla Hash:

{
  code_content: {
    text_content: "TextContent",
    zip_file_content: "data",
    s3_content_location: {
      bucket_arn: "BucketARN", # required
      file_key: "FileKey", # required
      object_version: "ObjectVersion",
    },
  },
  code_content_type: "PLAINTEXT", # required, accepts PLAINTEXT, ZIPFILE
}

Describes code configuration for a Flink-based Kinesis Data Analytics application.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#code_contentTypes::CodeContent

The location and type of the application code.

Returns:

#code_content_typeString

Specifies whether the code content is in text or zip format.

Possible values:

  • PLAINTEXT
  • ZIPFILE

Returns:

  • (String)

    Specifies whether the code content is in text or zip format.