Interface CodeDeployDeploymentStateChangeNotification.CodeDeployDeploymentStateChangeNotificationProps

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

@Stability(Experimental) public static interface CodeDeployDeploymentStateChangeNotification.CodeDeployDeploymentStateChangeNotificationProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.codedeploy@CodeDeployDeploymentStateChangeNotification 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.codedeploy.events.*;
 CodeDeployDeploymentStateChangeNotificationProps codeDeployDeploymentStateChangeNotificationProps = CodeDeployDeploymentStateChangeNotificationProps.builder()
         .application(List.of("application"))
         .deploymentGroup(List.of("deploymentGroup"))
         .deploymentId(List.of("deploymentId"))
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .instanceGroupId(List.of("instanceGroupId"))
         .region(List.of("region"))
         .state(List.of("state"))
         .build();
 
  • Method Details

    • getApplication

      @Stability(Experimental) @Nullable default List<String> getApplication()
      (experimental) application property.

      Specify an array of string values to match this event if the actual value of application 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

    • getDeploymentGroup

      @Stability(Experimental) @Nullable default List<String> getDeploymentGroup()
      (experimental) deploymentGroup property.

      Specify an array of string values to match this event if the actual value of deploymentGroup 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

    • getDeploymentId

      @Stability(Experimental) @Nullable default List<String> getDeploymentId()
      (experimental) deploymentId property.

      Specify an array of string values to match this event if the actual value of deploymentId 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: - -

    • getInstanceGroupId

      @Stability(Experimental) @Nullable default List<String> getInstanceGroupId()
      (experimental) instanceGroupId property.

      Specify an array of string values to match this event if the actual value of instanceGroupId 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

    • getRegion

      @Stability(Experimental) @Nullable default List<String> getRegion()
      (experimental) region property.

      Specify an array of string values to match this event if the actual value of region 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

      Returns:
      a CodeDeployDeploymentStateChangeNotification.CodeDeployDeploymentStateChangeNotificationProps.Builder of CodeDeployDeploymentStateChangeNotification.CodeDeployDeploymentStateChangeNotificationProps