Interface RDSDBSecurityGroupEvent.RDSDBSecurityGroupEventProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RDSDBSecurityGroupEvent.RDSDBSecurityGroupEventProps.Jsii$Proxy
- Enclosing class:
RDSDBSecurityGroupEvent
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.rds.events.*;
RDSDBSecurityGroupEventProps rDSDBSecurityGroupEventProps = RDSDBSecurityGroupEventProps.builder()
.date(List.of("date"))
.eventCategories(List.of("eventCategories"))
.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"))
.tags(Map.of(
"tagsKey", "tags"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRDSDBSecurityGroupEvent.RDSDBSecurityGroupEventPropsstatic final classAn implementation forRDSDBSecurityGroupEvent.RDSDBSecurityGroupEventProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getDate()(experimental) Date property.(experimental) EventCategories property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) Message property.(experimental) SourceArn property.(experimental) SourceIdentifier property.(experimental) SourceType property.getTags()(experimental) Tags property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDate
(experimental) Date property.Specify an array of string values to match this event if the actual value of Date 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
-
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
-
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
-
getTags
(experimental) Tags property.Specify an array of string values to match this event if the actual value of Tags 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
@Stability(Experimental) static RDSDBSecurityGroupEvent.RDSDBSecurityGroupEventProps.Builder builder()
-