Class: AWSCDK::DMS::CfnMigrationProject::SchemaConversionApplicationAttributesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DMS::CfnMigrationProject::SchemaConversionApplicationAttributesProperty
- Defined in:
- dms/cfn_migration_project.rb
Overview
The property describes schema conversion application attributes for the migration project.
Instance Attribute Summary collapse
- #s3_bucket_path ⇒ String? readonly
- #s3_bucket_role_arn ⇒ String? readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(s3_bucket_path: nil, s3_bucket_role_arn: nil) ⇒ SchemaConversionApplicationAttributesProperty
constructor
A new instance of SchemaConversionApplicationAttributesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(s3_bucket_path: nil, s3_bucket_role_arn: nil) ⇒ SchemaConversionApplicationAttributesProperty
Returns a new instance of SchemaConversionApplicationAttributesProperty.
734 735 736 737 738 739 |
# File 'dms/cfn_migration_project.rb', line 734 def initialize(s3_bucket_path: nil, s3_bucket_role_arn: nil) @s3_bucket_path = s3_bucket_path Jsii::Type.check_type(@s3_bucket_path, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "s3BucketPath") unless @s3_bucket_path.nil? @s3_bucket_role_arn = s3_bucket_role_arn Jsii::Type.check_type(@s3_bucket_role_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "s3BucketRoleArn") unless @s3_bucket_role_arn.nil? end |
Instance Attribute Details
#s3_bucket_path ⇒ String? (readonly)
743 744 745 |
# File 'dms/cfn_migration_project.rb', line 743 def s3_bucket_path @s3_bucket_path end |
#s3_bucket_role_arn ⇒ String? (readonly)
746 747 748 |
# File 'dms/cfn_migration_project.rb', line 746 def s3_bucket_role_arn @s3_bucket_role_arn end |
Class Method Details
.jsii_properties ⇒ Object
748 749 750 751 752 753 |
# File 'dms/cfn_migration_project.rb', line 748 def self.jsii_properties { :s3_bucket_path => "s3BucketPath", :s3_bucket_role_arn => "s3BucketRoleArn", } end |
Instance Method Details
#to_jsii ⇒ Object
755 756 757 758 759 760 761 762 |
# File 'dms/cfn_migration_project.rb', line 755 def to_jsii result = {} result.merge!({ "s3BucketPath" => @s3_bucket_path, "s3BucketRoleArn" => @s3_bucket_role_arn, }) result.compact end |