Class: AWSCDK::KinesisAnalytics::CfnApplicationV2::DeployAsApplicationConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::KinesisAnalytics::CfnApplicationV2::DeployAsApplicationConfigurationProperty
- Defined in:
- kinesis_analytics/cfn_application_v2.rb
Overview
The information required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state.
Instance Attribute Summary collapse
-
#s3_content_location ⇒ AWSCDK::IResolvable, AWSCDK::KinesisAnalytics::CfnApplicationV2::S3ContentBaseLocationProperty
readonly
The description of an Amazon S3 object that contains the Amazon Data Analytics application, including the Amazon Resource Name (ARN) of the S3 bucket, the name of the Amazon S3 object that contains the data, and the version number of the Amazon S3 object that contains the data.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(s3_content_location:) ⇒ DeployAsApplicationConfigurationProperty
constructor
A new instance of DeployAsApplicationConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(s3_content_location:) ⇒ DeployAsApplicationConfigurationProperty
Returns a new instance of DeployAsApplicationConfigurationProperty.
1256 1257 1258 1259 |
# File 'kinesis_analytics/cfn_application_v2.rb', line 1256 def initialize(s3_content_location:) @s3_content_location = s3_content_location.is_a?(Hash) ? ::AWSCDK::KinesisAnalytics::CfnApplicationV2::S3ContentBaseLocationProperty.new(**s3_content_location.transform_keys(&:to_sym)) : s3_content_location Jsii::Type.check_type(@s3_content_location, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19raW5lc2lzYW5hbHl0aWNzLkNmbkFwcGxpY2F0aW9uVjIuUzNDb250ZW50QmFzZUxvY2F0aW9uUHJvcGVydHkifV19fQ==")), "s3ContentLocation") end |
Instance Attribute Details
#s3_content_location ⇒ AWSCDK::IResolvable, AWSCDK::KinesisAnalytics::CfnApplicationV2::S3ContentBaseLocationProperty (readonly)
The description of an Amazon S3 object that contains the Amazon Data Analytics application, including the Amazon Resource Name (ARN) of the S3 bucket, the name of the Amazon S3 object that contains the data, and the version number of the Amazon S3 object that contains the data.
1265 1266 1267 |
# File 'kinesis_analytics/cfn_application_v2.rb', line 1265 def s3_content_location @s3_content_location end |
Class Method Details
.jsii_properties ⇒ Object
1267 1268 1269 1270 1271 |
# File 'kinesis_analytics/cfn_application_v2.rb', line 1267 def self.jsii_properties { :s3_content_location => "s3ContentLocation", } end |
Instance Method Details
#to_jsii ⇒ Object
1273 1274 1275 1276 1277 1278 1279 |
# File 'kinesis_analytics/cfn_application_v2.rb', line 1273 def to_jsii result = {} result.merge!({ "s3ContentLocation" => @s3_content_location, }) result.compact end |