Class: AWSCDK::DMS::CfnMigrationProject::SchemaConversionApplicationAttributesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
dms/cfn_migration_project.rb

Overview

The property describes schema conversion application attributes for the migration project.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(s3_bucket_path: nil, s3_bucket_role_arn: nil) ⇒ SchemaConversionApplicationAttributesProperty

Returns a new instance of SchemaConversionApplicationAttributesProperty.

Parameters:

  • s3_bucket_path (String, nil) (defaults to: nil)
  • s3_bucket_role_arn (String, nil) (defaults to: nil)


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_pathString? (readonly)



743
744
745
# File 'dms/cfn_migration_project.rb', line 743

def s3_bucket_path
  @s3_bucket_path
end

#s3_bucket_role_arnString? (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_propertiesObject



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_jsiiObject



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