Class CfnGrantProps
Properties for defining a CfnGrant
.
Implements
Inherited Members
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 |
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
GrantName
Grant name.
public string? GrantName { get; set; }
Property Value
Remarks
HomeRegion
Home Region of the grant.
public string? HomeRegion { get; set; }
Property Value
Remarks
LicenseArn
License ARN.
public string? LicenseArn { get; set; }
Property Value
Remarks
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
Status
Granted license status.
public string? Status { get; set; }