Interface CfnDomainPropsMixin.ExportingConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainPropsMixin.ExportingConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDomainPropsMixin
@Stability(Stable)
public static interface CfnDomainPropsMixin.ExportingConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration information for exporting Identity Resolution results, for example, to an S3 bucket.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.*;
ExportingConfigProperty exportingConfigProperty = ExportingConfigProperty.builder()
.s3Exporting(S3ExportingConfigProperty.builder()
.s3BucketName("s3BucketName")
.s3KeyName("s3KeyName")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomainPropsMixin.ExportingConfigPropertystatic final classAn implementation forCfnDomainPropsMixin.ExportingConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Exporting
The S3 location where Identity Resolution Jobs write result files.Returns union: either
IResolvableorCfnDomainPropsMixin.S3ExportingConfigProperty- See Also:
-
builder
-