Interface CacheCreationFailed.CacheCreationFailedProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CacheCreationFailed.CacheCreationFailedProps.Jsii$Proxy
- Enclosing class:
CacheCreationFailed
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.elasticache.events.*;
CacheCreationFailedProps cacheCreationFailedProps = CacheCreationFailedProps.builder()
.eventCategories(List.of("eventCategories"))
.eventId(List.of("eventId"))
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.message(List.of("message"))
.sourceArn(List.of("sourceArn"))
.sourceIdentifier(List.of("sourceIdentifier"))
.sourceType(List.of("sourceType"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCacheCreationFailed.CacheCreationFailedPropsstatic final classAn implementation forCacheCreationFailed.CacheCreationFailedProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) EventCategories property.(experimental) EventID property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) Message property.(experimental) SourceArn property.(experimental) SourceIdentifier property.(experimental) SourceType property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventCategories
(experimental) EventCategories property.Specify an array of string values to match this event if the actual value of EventCategories 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
-
getEventId
(experimental) EventID property.Specify an array of string values to match this event if the actual value of EventID 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
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getMessage
(experimental) Message property.Specify an array of string values to match this event if the actual value of Message 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
-
getSourceArn
(experimental) SourceArn property.Specify an array of string values to match this event if the actual value of SourceArn 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
-
getSourceIdentifier
(experimental) SourceIdentifier property.Specify an array of string values to match this event if the actual value of SourceIdentifier 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
-
getSourceType
(experimental) SourceType property.Specify an array of string values to match this event if the actual value of SourceType 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
-