Class CfnSiteToSiteVpnAttachment

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.480Z") @Stability(Stable) public class CfnSiteToSiteVpnAttachment extends CfnResource implements IInspectable
A CloudFormation AWS::NetworkManager::SiteToSiteVpnAttachment.

Creates an Amazon Web Services site-to-site VPN attachment on an edge location of a core network.

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.networkmanager.*;
 CfnSiteToSiteVpnAttachment cfnSiteToSiteVpnAttachment = CfnSiteToSiteVpnAttachment.Builder.create(this, "MyCfnSiteToSiteVpnAttachment")
         .coreNetworkId("coreNetworkId")
         .vpnConnectionArn("vpnConnectionArn")
         // the properties below are optional
         .proposedSegmentChange(ProposedSegmentChangeProperty.builder()
                 .attachmentPolicyRuleNumber(123)
                 .segmentName("segmentName")
                 .tags(List.of(CfnTag.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • 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

    • CfnSiteToSiteVpnAttachment

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

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

      @Stability(Stable) public CfnSiteToSiteVpnAttachment(@NotNull Construct scope, @NotNull String id, @NotNull CfnSiteToSiteVpnAttachmentProps props)
      Create a new AWS::NetworkManager::SiteToSiteVpnAttachment.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      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.
    • getAttrAttachmentId

      @Stability(Stable) @NotNull public String getAttrAttachmentId()
      The ID of the site-to-site VPN attachment.
    • getAttrAttachmentPolicyRuleNumber

      @Stability(Stable) @NotNull public Number getAttrAttachmentPolicyRuleNumber()
      The policy rule number associated with the attachment.
    • getAttrAttachmentType

      @Stability(Stable) @NotNull public String getAttrAttachmentType()
      The type of attachment.

      This will be SITE_TO_SITE_VPN .

    • getAttrCoreNetworkArn

      @Stability(Stable) @NotNull public String getAttrCoreNetworkArn()
      The ARN of the core network.
    • getAttrCreatedAt

      @Stability(Stable) @NotNull public String getAttrCreatedAt()
      The timestamp when the site-to-site VPN attachment was created.
    • getAttrEdgeLocation

      @Stability(Stable) @NotNull public String getAttrEdgeLocation()
      The Region where the core network edge is located.
    • getAttrOwnerAccountId

      @Stability(Stable) @NotNull public String getAttrOwnerAccountId()
      The ID of the site-to-site VPN attachment owner.
    • getAttrResourceArn

      @Stability(Stable) @NotNull public String getAttrResourceArn()
      The resource ARN for the site-to-site VPN attachment.
    • getAttrSegmentName

      @Stability(Stable) @NotNull public String getAttrSegmentName()
      The name of the site-to-site VPN attachment's segment.
    • getAttrState

      @Stability(Stable) @NotNull public String getAttrState()
      The state of the site-to-site VPN attachment.

      This can be: REJECTED | PENDING_ATTACHMENT_ACCEPTANCE | CREATING | FAILED | AVAILABLE | UPDATING | PENDING_NETWORK_UPDATE | PENDING_TAG_ACCEPTANCE | DELETING .

    • getAttrUpdatedAt

      @Stability(Stable) @NotNull public String getAttrUpdatedAt()
      The timestamp when the site-to-site VPN attachment was last updated.
    • getCfnProperties

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

      @Stability(Stable) @NotNull public TagManager getTags()
      AWS::NetworkManager::SiteToSiteVpnAttachment.Tags.
    • getCoreNetworkId

      @Stability(Stable) @NotNull public String getCoreNetworkId()
      AWS::NetworkManager::SiteToSiteVpnAttachment.CoreNetworkId.
    • setCoreNetworkId

      @Stability(Stable) public void setCoreNetworkId(@NotNull String value)
      AWS::NetworkManager::SiteToSiteVpnAttachment.CoreNetworkId.
    • getVpnConnectionArn

      @Stability(Stable) @NotNull public String getVpnConnectionArn()
      The ARN of the site-to-site VPN attachment.
    • setVpnConnectionArn

      @Stability(Stable) public void setVpnConnectionArn(@NotNull String value)
      The ARN of the site-to-site VPN attachment.
    • getProposedSegmentChange

      @Stability(Stable) @Nullable public Object getProposedSegmentChange()
      AWS::NetworkManager::SiteToSiteVpnAttachment.ProposedSegmentChange.
    • setProposedSegmentChange

      @Stability(Stable) public void setProposedSegmentChange(@Nullable IResolvable value)
      AWS::NetworkManager::SiteToSiteVpnAttachment.ProposedSegmentChange.
    • setProposedSegmentChange

      @Stability(Stable) public void setProposedSegmentChange(@Nullable CfnSiteToSiteVpnAttachment.ProposedSegmentChangeProperty value)
      AWS::NetworkManager::SiteToSiteVpnAttachment.ProposedSegmentChange.