Interface DLMPolicyStateChange.DLMPolicyStateChangeProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DLMPolicyStateChange.DLMPolicyStateChangeProps.Jsii$Proxy
Enclosing class:
DLMPolicyStateChange

@Stability(Experimental) public static interface DLMPolicyStateChange.DLMPolicyStateChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.dlm@DLMPolicyStateChange event.

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.dlm.events.*;
 DLMPolicyStateChangeProps dLMPolicyStateChangeProps = DLMPolicyStateChangeProps.builder()
         .cause(List.of("cause"))
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .policyId(List.of("policyId"))
         .state(List.of("state"))
         .build();
 
  • Method Details

    • getCause

      @Stability(Experimental) @Nullable default List<String> getCause()
      (experimental) cause property.

      Specify an array of string values to match this event if the actual value of cause is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getPolicyId

      @Stability(Experimental) @Nullable default List<String> getPolicyId()
      (experimental) policy_id property.

      Specify an array of string values to match this event if the actual value of policy_id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getState

      @Stability(Experimental) @Nullable default List<String> getState()
      (experimental) state property.

      Specify an array of string values to match this event if the actual value of state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      @Stability(Experimental) static DLMPolicyStateChange.DLMPolicyStateChangeProps.Builder builder()
      Returns:
      a DLMPolicyStateChange.DLMPolicyStateChangeProps.Builder of DLMPolicyStateChange.DLMPolicyStateChangeProps