Class CfnEnvironmentBlueprintConfiguration

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.datazone.CfnEnvironmentBlueprintConfiguration
All Implemented Interfaces:
IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-11T03:45:52.420Z") @Stability(Stable) public class CfnEnvironmentBlueprintConfiguration extends CfnResource implements IInspectable
The configuration details of an environment blueprint.

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.*;
 CfnEnvironmentBlueprintConfiguration cfnEnvironmentBlueprintConfiguration = CfnEnvironmentBlueprintConfiguration.Builder.create(this, "MyCfnEnvironmentBlueprintConfiguration")
         .domainIdentifier("domainIdentifier")
         .enabledRegions(List.of("enabledRegions"))
         .environmentBlueprintIdentifier("environmentBlueprintIdentifier")
         // the properties below are optional
         .manageAccessRoleArn("manageAccessRoleArn")
         .provisioningRoleArn("provisioningRoleArn")
         .regionalParameters(List.of(RegionalParameterProperty.builder()
                 .parameters(Map.of(
                         "parametersKey", "parameters"))
                 .region("region")
                 .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

    • CfnEnvironmentBlueprintConfiguration

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

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

      @Stability(Stable) public CfnEnvironmentBlueprintConfiguration(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnEnvironmentBlueprintConfigurationProps 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.
    • getAttrCreatedAt

      @Stability(Stable) @NotNull public String getAttrCreatedAt()
      The timestamp of when an environment blueprint was created.
    • getAttrDomainId

      @Stability(Stable) @NotNull public String getAttrDomainId()
      The identifier of the Amazon DataZone domain in which an environment blueprint exists.
    • getAttrEnvironmentBlueprintId

      @Stability(Stable) @NotNull public String getAttrEnvironmentBlueprintId()
      The identifier of the environment blueprint.

      This identifier should be used when creating environment profiles.

    • getAttrUpdatedAt

      @Stability(Stable) @NotNull public String getAttrUpdatedAt()
      The timestamp of when the environment blueprint was updated.
    • getCfnProperties

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

      @Stability(Stable) @NotNull public String getDomainIdentifier()
      The identifier of the Amazon DataZone domain in which an environment blueprint exists.
    • setDomainIdentifier

      @Stability(Stable) public void setDomainIdentifier(@NotNull String value)
      The identifier of the Amazon DataZone domain in which an environment blueprint exists.
    • getEnabledRegions

      @Stability(Stable) @NotNull public List<String> getEnabledRegions()
      The enabled AWS Regions specified in a blueprint configuration.
    • setEnabledRegions

      @Stability(Stable) public void setEnabledRegions(@NotNull List<String> value)
      The enabled AWS Regions specified in a blueprint configuration.
    • getEnvironmentBlueprintIdentifier

      @Stability(Stable) @NotNull public String getEnvironmentBlueprintIdentifier()
      The identifier of the environment blueprint.
    • setEnvironmentBlueprintIdentifier

      @Stability(Stable) public void setEnvironmentBlueprintIdentifier(@NotNull String value)
      The identifier of the environment blueprint.
    • getManageAccessRoleArn

      @Stability(Stable) @Nullable public String getManageAccessRoleArn()
      The ARN of the manage access role.
    • setManageAccessRoleArn

      @Stability(Stable) public void setManageAccessRoleArn(@Nullable String value)
      The ARN of the manage access role.
    • getProvisioningRoleArn

      @Stability(Stable) @Nullable public String getProvisioningRoleArn()
      The ARN of the provisioning role.
    • setProvisioningRoleArn

      @Stability(Stable) public void setProvisioningRoleArn(@Nullable String value)
      The ARN of the provisioning role.
    • getRegionalParameters

      @Stability(Stable) @Nullable public Object getRegionalParameters()
      The regional parameters of the environment blueprint.
    • setRegionalParameters

      @Stability(Stable) public void setRegionalParameters(@Nullable IResolvable value)
      The regional parameters of the environment blueprint.
    • setRegionalParameters

      @Stability(Stable) public void setRegionalParameters(@Nullable List<Object> value)
      The regional parameters of the environment blueprint.