Interface CfnEnvironmentActionsProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironmentActionsProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:06.123Z")
@Stability(Stable)
public interface CfnEnvironmentActionsProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEnvironmentActions.
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.*;
CfnEnvironmentActionsProps cfnEnvironmentActionsProps = CfnEnvironmentActionsProps.builder()
.name("name")
// the properties below are optional
.description("description")
.domainIdentifier("domainIdentifier")
.environmentIdentifier("environmentIdentifier")
.identifier("identifier")
.parameters(AwsConsoleLinkParametersProperty.builder()
.uri("uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnvironmentActionsPropsstatic final classAn implementation forCfnEnvironmentActionsProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the Amazon DataZone environment action.default StringThe Amazon DataZone domain ID of the environment action.default StringThe environment ID of the environment action.default StringThe ID of the environment action.getName()The name of the environment action.default ObjectThe parameters of the console link specified as part of the environment action.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the environment action.- See Also:
-
getDescription
The description of the Amazon DataZone environment action.- See Also:
-
getDomainIdentifier
The Amazon DataZone domain ID of the environment action.- See Also:
-
getEnvironmentIdentifier
The environment ID of the environment action.- See Also:
-
getIdentifier
The ID of the environment action.- See Also:
-
getParameters
The parameters of the console link specified as part of the environment action.- See Also:
-
builder
- Returns:
- a
CfnEnvironmentActionsProps.BuilderofCfnEnvironmentActionsProps
-