Class CfnEnabledControl

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

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:55:55.740Z") @Stability(Stable) public class CfnEnabledControl extends CfnResource implements IInspectable, ITaggableV2
The resource represents an enabled control.

It specifies an asynchronous operation that creates AWS resources on the specified organizational unit and the accounts it contains. The resources created will vary according to the control that you specify.

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.controltower.*;
 Object value;
 CfnEnabledControl cfnEnabledControl = CfnEnabledControl.Builder.create(this, "MyCfnEnabledControl")
         .controlIdentifier("controlIdentifier")
         .targetIdentifier("targetIdentifier")
         // the properties below are optional
         .parameters(List.of(EnabledControlParameterProperty.builder()
                 .key("key")
                 .value(value)
                 .build()))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .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

    • CfnEnabledControl

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

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

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

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

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

      @Stability(Stable) @NotNull public String getControlIdentifier()
      The ARN of the control.
    • setControlIdentifier

      @Stability(Stable) public void setControlIdentifier(@NotNull String value)
      The ARN of the control.
    • getTargetIdentifier

      @Stability(Stable) @NotNull public String getTargetIdentifier()
      The ARN of the organizational unit.
    • setTargetIdentifier

      @Stability(Stable) public void setTargetIdentifier(@NotNull String value)
      The ARN of the organizational unit.
    • getParameters

      @Stability(Stable) @Nullable public Object getParameters()
      Array of EnabledControlParameter objects.
    • setParameters

      @Stability(Stable) public void setParameters(@Nullable IResolvable value)
      Array of EnabledControlParameter objects.
    • setParameters

      @Stability(Stable) public void setParameters(@Nullable List<Object> value)
      Array of EnabledControlParameter objects.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      Tags to be applied to the enabled control.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      Tags to be applied to the enabled control.