Class CfnEnvironmentActions

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-15T10:24:57.383Z") @Stability(Stable) public class CfnEnvironmentActions extends CfnResource implements IInspectable
The details about the specified action configured for an environment.

For example, the details of the specified console links for an analytics tool that is available in this environment.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.datazone.*;
 CfnEnvironmentActions cfnEnvironmentActions = CfnEnvironmentActions.Builder.create(this, "MyCfnEnvironmentActions")
         .name("name")
         // the properties below are optional
         .description("description")
         .domainIdentifier("domainIdentifier")
         .environmentIdentifier("environmentIdentifier")
         .identifier("identifier")
         .parameters(AwsConsoleLinkParametersProperty.builder()
                 .uri("uri")
                 .build())
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnEnvironmentActions

      protected CfnEnvironmentActions(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnEnvironmentActions

      protected CfnEnvironmentActions(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnEnvironmentActions

      @Stability(Stable) public CfnEnvironmentActions(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnEnvironmentActionsProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrDomainId

      @Stability(Stable) @NotNull public String getAttrDomainId()
      The Amazon DataZone domain ID of the environment action.
    • getAttrEnvironmentId

      @Stability(Stable) @NotNull public String getAttrEnvironmentId()
      The environment ID of the environment action.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The ID of the environment action.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of the environment action.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the environment action.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      The description of the Amazon DataZone environment action.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      The description of the Amazon DataZone environment action.
    • getDomainIdentifier

      @Stability(Stable) @Nullable public String getDomainIdentifier()
      The Amazon DataZone domain ID of the environment action.
    • setDomainIdentifier

      @Stability(Stable) public void setDomainIdentifier(@Nullable String value)
      The Amazon DataZone domain ID of the environment action.
    • getEnvironmentIdentifier

      @Stability(Stable) @Nullable public String getEnvironmentIdentifier()
      The environment ID of the environment action.
    • setEnvironmentIdentifier

      @Stability(Stable) public void setEnvironmentIdentifier(@Nullable String value)
      The environment ID of the environment action.
    • getIdentifier

      @Stability(Stable) @Nullable public String getIdentifier()
      The ID of the environment action.
    • setIdentifier

      @Stability(Stable) public void setIdentifier(@Nullable String value)
      The ID of the environment action.
    • getParameters

      @Stability(Stable) @Nullable public Object getParameters()
      The parameters of the console link specified as part of the environment action.
    • setParameters

      @Stability(Stable) public void setParameters(@Nullable IResolvable value)
      The parameters of the console link specified as part of the environment action.
    • setParameters

      @Stability(Stable) public void setParameters(@Nullable CfnEnvironmentActions.AwsConsoleLinkParametersProperty value)
      The parameters of the console link specified as part of the environment action.