Class: AWSCDK::CustomerProfiles::CfnDomain::ExportingConfigProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
customer_profiles/cfn_domain.rb

Overview

Configuration information for exporting Identity Resolution results, for example, to an S3 bucket.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(s3_exporting: nil) ⇒ ExportingConfigProperty

Returns a new instance of ExportingConfigProperty.

Parameters:



982
983
984
985
# File 'customer_profiles/cfn_domain.rb', line 982

def initialize(s3_exporting: nil)
  @s3_exporting = s3_exporting.is_a?(Hash) ? ::AWSCDK::CustomerProfiles::CfnDomain::S3ExportingConfigProperty.new(**s3_exporting.transform_keys(&:to_sym)) : s3_exporting
  Jsii::Type.check_type(@s3_exporting, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19jdXN0b21lcnByb2ZpbGVzLkNmbkRvbWFpbi5TM0V4cG9ydGluZ0NvbmZpZ1Byb3BlcnR5In1dfX0=")), "s3Exporting") unless @s3_exporting.nil?
end

Instance Attribute Details

#s3_exportingAWSCDK::IResolvable, ... (readonly)

The S3 location where Identity Resolution Jobs write result files.



991
992
993
# File 'customer_profiles/cfn_domain.rb', line 991

def s3_exporting
  @s3_exporting
end

Class Method Details

.jsii_propertiesObject



993
994
995
996
997
# File 'customer_profiles/cfn_domain.rb', line 993

def self.jsii_properties
  {
    :s3_exporting => "s3Exporting",
  }
end

Instance Method Details

#to_jsiiObject



999
1000
1001
1002
1003
1004
1005
# File 'customer_profiles/cfn_domain.rb', line 999

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