Show / Hide Table of Contents

Class CfnLicenseEndpointProps

Properties for defining a CfnLicenseEndpoint.

Inheritance
object
CfnLicenseEndpointProps
Implements
ICfnLicenseEndpointProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Deadline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLicenseEndpointProps : ICfnLicenseEndpointProps
Syntax (vb)
Public Class CfnLicenseEndpointProps Implements ICfnLicenseEndpointProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Deadline;

             var cfnLicenseEndpointProps = new CfnLicenseEndpointProps {
                 SecurityGroupIds = new [] { "securityGroupIds" },
                 SubnetIds = new [] { "subnetIds" },
                 VpcId = "vpcId",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnLicenseEndpointProps()

Properties for defining a CfnLicenseEndpoint.

Properties

SecurityGroupIds

The identifier of the Amazon EC2 security group that controls access to the license endpoint.

SubnetIds

Identifies the VPC subnets that can connect to a license endpoint.

Tags

The tags to add to your license endpoint.

VpcId

The VPC (virtual private cloud) ID associated with the license endpoint.

Constructors

CfnLicenseEndpointProps()

Properties for defining a CfnLicenseEndpoint.

public CfnLicenseEndpointProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Deadline;

             var cfnLicenseEndpointProps = new CfnLicenseEndpointProps {
                 SecurityGroupIds = new [] { "securityGroupIds" },
                 SubnetIds = new [] { "subnetIds" },
                 VpcId = "vpcId",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

SecurityGroupIds

The identifier of the Amazon EC2 security group that controls access to the license endpoint.

public string[] SecurityGroupIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html#cfn-deadline-licenseendpoint-securitygroupids

SubnetIds

Identifies the VPC subnets that can connect to a license endpoint.

public string[] SubnetIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html#cfn-deadline-licenseendpoint-subnetids

Tags

The tags to add to your license endpoint.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html#cfn-deadline-licenseendpoint-tags

VpcId

The VPC (virtual private cloud) ID associated with the license endpoint.

public string VpcId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html#cfn-deadline-licenseendpoint-vpcid

Implements

ICfnLicenseEndpointProps
Back to top Generated by DocFX