Show / Hide Table of Contents

Class CfnMeteredProduct

Adds a metered product.

Inheritance
object
CfnElement
CfnRefElement
CfnResource
CfnMeteredProduct
Implements
IInspectable
IMeteredProductRef
IConstruct
IDependable
IEnvironmentAware
Inherited Members
CfnResource.IsCfnResource(object)
CfnResource.AddDeletionOverride(string)
CfnResource.AddDependency(CfnResource)
CfnResource.AddDependsOn(CfnResource)
CfnResource.AddMetadata(string, object)
CfnResource.AddOverride(string, object)
CfnResource.AddPropertyDeletionOverride(string)
CfnResource.AddPropertyOverride(string, object)
CfnResource.ApplyRemovalPolicy(RemovalPolicy?, IRemovalPolicyOptions)
CfnResource.GetAtt(string, ResolutionTypeHint?)
CfnResource.GetMetadata(string)
CfnResource.ObtainDependencies()
CfnResource.ObtainResourceDependencies()
CfnResource.RemoveDependency(CfnResource)
CfnResource.ReplaceDependency(CfnResource, CfnResource)
CfnResource.ShouldSynthesize()
CfnResource.ToString()
CfnResource.ValidateProperties(object)
CfnResource.CfnOptions
CfnResource.CfnResourceType
CfnResource.Env
CfnResource.UpdatedProperites
CfnResource.UpdatedProperties
CfnRefElement.Ref
CfnElement.IsCfnElement(object)
CfnElement.OverrideLogicalId(string)
CfnElement.CreationStack
CfnElement.LogicalId
CfnElement.Stack
Namespace: Amazon.CDK.AWS.Deadline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMeteredProduct : CfnResource, IInspectable, IMeteredProductRef, IConstruct, IDependable, IEnvironmentAware
Syntax (vb)
Public Class CfnMeteredProduct Inherits CfnResource Implements IInspectable, IMeteredProductRef, IConstruct, IDependable, IEnvironmentAware
Remarks

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

CloudformationResource: AWS::Deadline::MeteredProduct

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 cfnMeteredProduct = new CfnMeteredProduct(this, "MyCfnMeteredProduct", new CfnMeteredProductProps {
                 LicenseEndpointId = "licenseEndpointId",
                 ProductId = "productId"
             });

Synopsis

Constructors

CfnMeteredProduct(Construct, string, ICfnMeteredProductProps?)

Create a new AWS::Deadline::MeteredProduct.

Properties

AttrArn

The Amazon Resource Name (ARN) of the metered product.

AttrFamily

The family to which the metered product belongs.

AttrPort

The port on which the metered product should run.

AttrVendor

The vendor.

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

CfnProperties

Adds a metered product.

LicenseEndpointId

The Amazon EC2 identifier of the license endpoint.

MeteredProductRef

A reference to a MeteredProduct resource.

ProductId

The product ID.

Methods

ArnForMeteredProduct(IMeteredProductRef)

Adds a metered product.

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

RenderProperties(IDictionary<string, object>)

Adds a metered product.

Constructors

CfnMeteredProduct(Construct, string, ICfnMeteredProductProps?)

Create a new AWS::Deadline::MeteredProduct.

public CfnMeteredProduct(Construct scope, string id, ICfnMeteredProductProps? props = null)
Parameters
scope Construct

Scope in which this resource is defined.

id string

Construct identifier for this resource (unique in its scope).

props ICfnMeteredProductProps

Resource properties.

Remarks

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

CloudformationResource: AWS::Deadline::MeteredProduct

ExampleMetadata: fixture=_generated

Properties

AttrArn

The Amazon Resource Name (ARN) of the metered product.

public virtual string AttrArn { get; }
Property Value

string

Remarks

CloudformationAttribute: Arn

AttrFamily

The family to which the metered product belongs.

public virtual string AttrFamily { get; }
Property Value

string

Remarks

CloudformationAttribute: Family

AttrPort

The port on which the metered product should run.

public virtual double AttrPort { get; }
Property Value

double

Remarks

CloudformationAttribute: Port

AttrVendor

The vendor.

public virtual string AttrVendor { get; }
Property Value

string

Remarks

CloudformationAttribute: Vendor

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value

string

Remarks

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

CloudformationResource: AWS::Deadline::MeteredProduct

ExampleMetadata: fixture=_generated

CfnProperties

Adds a metered product.

protected override IDictionary<string, object> CfnProperties { get; }
Property Value

IDictionary<string, object>

Overrides
CfnResource.CfnProperties
Remarks

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

CloudformationResource: AWS::Deadline::MeteredProduct

ExampleMetadata: fixture=_generated

LicenseEndpointId

The Amazon EC2 identifier of the license endpoint.

public virtual string? LicenseEndpointId { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::Deadline::MeteredProduct

ExampleMetadata: fixture=_generated

MeteredProductRef

A reference to a MeteredProduct resource.

public virtual IMeteredProductReference MeteredProductRef { get; }
Property Value

IMeteredProductReference

Remarks

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

CloudformationResource: AWS::Deadline::MeteredProduct

ExampleMetadata: fixture=_generated

ProductId

The product ID.

public virtual string? ProductId { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::Deadline::MeteredProduct

ExampleMetadata: fixture=_generated

Methods

ArnForMeteredProduct(IMeteredProductRef)

Adds a metered product.

public static string ArnForMeteredProduct(IMeteredProductRef resource)
Parameters
resource IMeteredProductRef
Returns

string

Remarks

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

CloudformationResource: AWS::Deadline::MeteredProduct

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 cfnMeteredProduct = new CfnMeteredProduct(this, "MyCfnMeteredProduct", new CfnMeteredProductProps {
                 LicenseEndpointId = "licenseEndpointId",
                 ProductId = "productId"
             });

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

public virtual void Inspect(TreeInspector inspector)
Parameters
inspector TreeInspector

tree inspector to collect and process attributes.

Remarks

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

CloudformationResource: AWS::Deadline::MeteredProduct

ExampleMetadata: fixture=_generated

RenderProperties(IDictionary<string, object>)

Adds a metered product.

protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
props IDictionary<string, object>
Returns

IDictionary<string, object>

Overrides
CfnResource.RenderProperties(IDictionary<string, object>)
Remarks

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

CloudformationResource: AWS::Deadline::MeteredProduct

ExampleMetadata: fixture=_generated

Implements

IInspectable
IMeteredProductRef
Constructs.IConstruct
Constructs.IDependable
IEnvironmentAware
Back to top Generated by DocFX