Class CfnLicenseEndpoint

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.101.0 (build b95fe5d)", date="2024-07-12T19:34:00.001Z") @Stability(Stable) public class CfnLicenseEndpoint extends CfnResource implements IInspectable, ITaggableV2
Creates a license endpoint to integrate your various licensed software used for rendering on Deadline Cloud.

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.deadline.*;
 CfnLicenseEndpoint cfnLicenseEndpoint = CfnLicenseEndpoint.Builder.create(this, "MyCfnLicenseEndpoint")
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .vpcId("vpcId")
         // the properties below are optional
         .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

    • CfnLicenseEndpoint

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

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

      @Stability(Stable) public CfnLicenseEndpoint(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnLicenseEndpointProps 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 Amazon Resource Name (ARN) of the license endpoint.
    • getAttrDnsName

      @Stability(Stable) @NotNull public String getAttrDnsName()
      The DNS name of the license server endpoint.
    • getAttrLicenseEndpointId

      @Stability(Stable) @NotNull public String getAttrLicenseEndpointId()
      The license endpoint ID.
    • getAttrStatus

      @Stability(Stable) @NotNull public String getAttrStatus()
      The status of the license endpoint.
    • getAttrStatusMessage

      @Stability(Stable) @NotNull public String getAttrStatusMessage()
      The status message of the license endpoint.
    • 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
    • getSecurityGroupIds

      @Stability(Stable) @NotNull public List<String> getSecurityGroupIds()
      The identifier of the Amazon EC2 security group that controls access to the license endpoint.
    • setSecurityGroupIds

      @Stability(Stable) public void setSecurityGroupIds(@NotNull List<String> value)
      The identifier of the Amazon EC2 security group that controls access to the license endpoint.
    • getSubnetIds

      @Stability(Stable) @NotNull public List<String> getSubnetIds()
      Identifies the VPC subnets that can connect to a license endpoint.
    • setSubnetIds

      @Stability(Stable) public void setSubnetIds(@NotNull List<String> value)
      Identifies the VPC subnets that can connect to a license endpoint.
    • getVpcId

      @Stability(Stable) @NotNull public String getVpcId()
      The VCP(virtual private cloud) ID associated with the license endpoint.
    • setVpcId

      @Stability(Stable) public void setVpcId(@NotNull String value)
      The VCP(virtual private cloud) ID associated with the license endpoint.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      The tags to add to your license endpoint.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      The tags to add to your license endpoint.