Class CfnOutpostResolver

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.route53resolver.CfnOutpostResolver
All Implemented Interfaces:
IInspectable, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:13.087Z") @Stability(Stable) public class CfnOutpostResolver extends CfnResource implements IInspectable, ITaggableV2
Creates a Amazon Route 53 Resolver on an Outpost.

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.route53resolver.*;
 CfnOutpostResolver cfnOutpostResolver = CfnOutpostResolver.Builder.create(this, "MyCfnOutpostResolver")
         .name("name")
         .outpostArn("outpostArn")
         .preferredInstanceType("preferredInstanceType")
         // the properties below are optional
         .instanceCount(123)
         .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

    • CfnOutpostResolver

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

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

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

      @Stability(Stable) @NotNull public String getAttrArn()
      The ARN (Amazon Resource Name) for the Resolver on an Outpost.
    • getAttrCreationTime

      @Stability(Stable) @NotNull public String getAttrCreationTime()
      The date and time that the Outpost Resolver was created, in Unix time format and Coordinated Universal Time (UTC).
    • getAttrCreatorRequestId

      @Stability(Stable) @NotNull public String getAttrCreatorRequestId()
      A unique string that identifies the request that created the Resolver endpoint.

      The CreatorRequestId allows failed requests to be retried without the risk of running the operation twice.

    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The ID of the Resolver on Outpost.
    • getAttrModificationTime

      @Stability(Stable) @NotNull public String getAttrModificationTime()
      The date and time that the Outpost Resolver was modified, in Unix time format and Coordinated Universal Time (UTC).
    • getAttrStatus

      @Stability(Stable) @NotNull public String getAttrStatus()
      Status of the Resolver.

      Valid Values: CREATING | OPERATIONAL | UPDATING | DELETING | ACTION_NEEDED | FAILED_CREATION | FAILED_DELETION.

    • getAttrStatusMessage

      @Stability(Stable) @NotNull public String getAttrStatusMessage()
      A detailed description of the Resolver.
    • 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
    • getName

      @Stability(Stable) @NotNull public String getName()
      Name of the Resolver.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      Name of the Resolver.
    • getOutpostArn

      @Stability(Stable) @NotNull public String getOutpostArn()
      The ARN (Amazon Resource Name) for the Outpost.
    • setOutpostArn

      @Stability(Stable) public void setOutpostArn(@NotNull String value)
      The ARN (Amazon Resource Name) for the Outpost.
    • getPreferredInstanceType

      @Stability(Stable) @NotNull public String getPreferredInstanceType()
      The Amazon EC2 instance type.
    • setPreferredInstanceType

      @Stability(Stable) public void setPreferredInstanceType(@NotNull String value)
      The Amazon EC2 instance type.
    • getInstanceCount

      @Stability(Stable) @Nullable public Number getInstanceCount()
      Amazon EC2 instance count for the Resolver on the Outpost.
    • setInstanceCount

      @Stability(Stable) public void setInstanceCount(@Nullable Number value)
      Amazon EC2 instance count for the Resolver on the Outpost.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      A key value pair that helps you identify a Route 53 Resolver .
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      A key value pair that helps you identify a Route 53 Resolver .