Class CfnRequesterGateway

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

@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)", date="2025-11-10T13:40:13.931Z") @Stability(Stable) public class CfnRequesterGateway extends CfnResource implements IInspectable, IRequesterGatewayRef, ITaggableV2
Resource Type definition for AWS::RTBFabric::RequesterGateway Resource Type.

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.rtbfabric.*;
 CfnRequesterGateway cfnRequesterGateway = CfnRequesterGateway.Builder.create(this, "MyCfnRequesterGateway")
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .vpcId("vpcId")
         // the properties below are optional
         .description("description")
         .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

    • CfnRequesterGateway

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

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

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

      @Stability(Stable) @NotNull public Number getAttrActiveLinksCount()
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
    • getAttrCreatedTimestamp

      @Stability(Stable) @NotNull public String getAttrCreatedTimestamp()
    • getAttrDomainName

      @Stability(Stable) @NotNull public String getAttrDomainName()
    • getAttrGatewayId

      @Stability(Stable) @NotNull public String getAttrGatewayId()
    • getAttrRequesterGatewayStatus

      @Stability(Stable) @NotNull public String getAttrRequesterGatewayStatus()
    • getAttrTotalLinksCount

      @Stability(Stable) @NotNull public Number getAttrTotalLinksCount()
    • getAttrUpdatedTimestamp

      @Stability(Stable) @NotNull public String getAttrUpdatedTimestamp()
    • 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
    • getRequesterGatewayRef

      @Stability(Stable) @NotNull public RequesterGatewayReference getRequesterGatewayRef()
      A reference to a RequesterGateway resource.
      Specified by:
      getRequesterGatewayRef in interface IRequesterGatewayRef
    • getSecurityGroupIds

      @Stability(Stable) @NotNull public List<String> getSecurityGroupIds()
      The ID of one or more security groups in order to create a requester gateway.
    • setSecurityGroupIds

      @Stability(Stable) public void setSecurityGroupIds(@NotNull List<String> value)
      The ID of one or more security groups in order to create a requester gateway.
    • getSubnetIds

      @Stability(Stable) @NotNull public List<String> getSubnetIds()
      The ID of one or more subnets in order to create a requester gateway.
    • setSubnetIds

      @Stability(Stable) public void setSubnetIds(@NotNull List<String> value)
      The ID of one or more subnets in order to create a requester gateway.
    • getVpcId

      @Stability(Stable) @NotNull public String getVpcId()
    • setVpcId

      @Stability(Stable) public void setVpcId(@NotNull String value)
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      Tags to assign to the Requester Gateway.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      Tags to assign to the Requester Gateway.