Class: AWSCDK::KinesisAnalyticsv2::CfnApplication::DeployAsApplicationConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
kinesis_analyticsv2/cfn_application.rb

Overview

The information required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(s3_content_location:) ⇒ DeployAsApplicationConfigurationProperty

Returns a new instance of DeployAsApplicationConfigurationProperty.

Parameters:



1255
1256
1257
1258
# File 'kinesis_analyticsv2/cfn_application.rb', line 1255

def initialize(s3_content_location:)
  @s3_content_location = s3_content_location.is_a?(Hash) ? ::AWSCDK::KinesisAnalyticsv2::CfnApplication::S3ContentBaseLocationProperty.new(**s3_content_location.transform_keys(&:to_sym)) : s3_content_location
  Jsii::Type.check_type(@s3_content_location, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19raW5lc2lzYW5hbHl0aWNzdjIuQ2ZuQXBwbGljYXRpb24uUzNDb250ZW50QmFzZUxvY2F0aW9uUHJvcGVydHkifV19fQ==")), "s3ContentLocation")
end

Instance Attribute Details

#s3_content_locationAWSCDK::IResolvable, AWSCDK::KinesisAnalyticsv2::CfnApplication::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.



1264
1265
1266
# File 'kinesis_analyticsv2/cfn_application.rb', line 1264

def s3_content_location
  @s3_content_location
end

Class Method Details

.jsii_propertiesObject



1266
1267
1268
1269
1270
# File 'kinesis_analyticsv2/cfn_application.rb', line 1266

def self.jsii_properties
  {
    :s3_content_location => "s3ContentLocation",
  }
end

Instance Method Details

#to_jsiiObject



1272
1273
1274
1275
1276
1277
1278
# File 'kinesis_analyticsv2/cfn_application.rb', line 1272

def to_jsii
  result = {}
  result.merge!({
    "s3ContentLocation" => @s3_content_location,
  })
  result.compact
end