Interface DataSetUpdateDelayed.Notification
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DataSetUpdateDelayed.Notification.Jsii$Proxy
- Enclosing class:
DataSetUpdateDelayed
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.dataexchange.events.*;
Notification notification = Notification.builder()
.comment(List.of("comment"))
.scope(Scope.builder()
.lakeFormationTagPolicies(List.of(LakeFormationTagPolicyDetails.builder()
.database(List.of("database"))
.table(List.of("table"))
.build()))
.redshiftDataShares(List.of(RedshiftDataShareDetails.builder()
.arn(List.of("arn"))
.database(List.of("database"))
.function(List.of("function"))
.table(List.of("table"))
.view(List.of("view"))
.build()))
.s3DataAccesses(List.of(S3DataAccessDetails.builder()
.keyPrefixes(List.of("keyPrefixes"))
.keys(List.of("keys"))
.build()))
.build())
.type(List.of("type"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDataSetUpdateDelayed.Notificationstatic final classAn implementation forDataSetUpdateDelayed.Notification -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) Comment property.default DataSetUpdateDelayed.ScopegetScope()(experimental) Scope property.getType()(experimental) Type property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComment
(experimental) Comment property.Specify an array of string values to match this event if the actual value of Comment is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getScope
(experimental) Scope property.Specify an array of string values to match this event if the actual value of Scope is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getType
(experimental) Type property.Specify an array of string values to match this event if the actual value of Type is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-