Interface ICfnEnvironmentActionsProps
Properties for defining a CfnEnvironmentActions.
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnEnvironmentActionsProps
Syntax (vb)
Public Interface ICfnEnvironmentActionsProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataZone;
var cfnEnvironmentActionsProps = new CfnEnvironmentActionsProps {
Name = "name",
// the properties below are optional
Description = "description",
DomainIdentifier = "domainIdentifier",
EnvironmentIdentifier = "environmentIdentifier",
Identifier = "identifier",
Parameters = new AwsConsoleLinkParametersProperty {
Uri = "uri"
}
};
Synopsis
Properties
| Description | The environment action description. |
| DomainIdentifier | The Amazon DataZone domain ID of the environment action. |
| EnvironmentIdentifier | The environment ID of the environment action. |
| Identifier | The ID of the environment action. |
| Name | The name of the environment action. |
| Parameters | The parameters of the environment action. |
Properties
Description
The environment action description.
string? Description { get; }
Property Value
Remarks
DomainIdentifier
The Amazon DataZone domain ID of the environment action.
string? DomainIdentifier { get; }
Property Value
Remarks
EnvironmentIdentifier
The environment ID of the environment action.
string? EnvironmentIdentifier { get; }
Property Value
Remarks
Identifier
The ID of the environment action.
string? Identifier { get; }
Property Value
Remarks
Name
The name of the environment action.
string Name { get; }
Property Value
Remarks
Parameters
The parameters of the environment action.
object? Parameters { get; }