Show / Hide Table of Contents

Class CfnGrantProps

Properties for defining a CfnGrant.

Inheritance
object
CfnGrantProps
Implements
ICfnGrantProps
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.LicenseManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGrantProps : ICfnGrantProps
Syntax (vb)
Public Class CfnGrantProps Implements ICfnGrantProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-grant.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.LicenseManager;

             var cfnGrantProps = new CfnGrantProps {
                 AllowedOperations = new [] { "allowedOperations" },
                 GrantName = "grantName",
                 HomeRegion = "homeRegion",
                 LicenseArn = "licenseArn",
                 Principals = new [] { "principals" },
                 Status = "status"
             };

Synopsis

Constructors

CfnGrantProps()

Properties for defining a CfnGrant.

Properties

AllowedOperations

Allowed operations for the grant.

GrantName

Grant name.

HomeRegion

Home Region of the grant.

LicenseArn

License ARN.

Principals

The grant principals. You can specify one of the following as an Amazon Resource Name (ARN):.

Status

Granted license status.

Constructors

CfnGrantProps()

Properties for defining a CfnGrant.

public CfnGrantProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-grant.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.LicenseManager;

             var cfnGrantProps = new CfnGrantProps {
                 AllowedOperations = new [] { "allowedOperations" },
                 GrantName = "grantName",
                 HomeRegion = "homeRegion",
                 LicenseArn = "licenseArn",
                 Principals = new [] { "principals" },
                 Status = "status"
             };

Properties

AllowedOperations

Allowed operations for the grant.

public string[]? AllowedOperations { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-grant.html#cfn-licensemanager-grant-allowedoperations

GrantName

Grant name.

public string? GrantName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-grant.html#cfn-licensemanager-grant-grantname

HomeRegion

Home Region of the grant.

public string? HomeRegion { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-grant.html#cfn-licensemanager-grant-homeregion

LicenseArn

License ARN.

public string? LicenseArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-grant.html#cfn-licensemanager-grant-licensearn

Principals

The grant principals. You can specify one of the following as an Amazon Resource Name (ARN):.

public string[]? Principals { get; set; }
Property Value

string[]

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-grant.html#cfn-licensemanager-grant-principals

    Status

    Granted license status.

    public string? Status { get; set; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-grant.html#cfn-licensemanager-grant-status

    Implements

    ICfnGrantProps
    Back to top Generated by DocFX