Show / Hide Table of Contents

Class GrantOnKeyResult

Result of a call to grantOnKey().

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

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.IAM;

            Grant grant;

            var grantOnKeyResult = new GrantOnKeyResult {
                Grant = grant
            };

Synopsis

Constructors

GrantOnKeyResult()

Result of a call to grantOnKey().

Properties

Grant

The Grant object, if a grant was created.

Constructors

GrantOnKeyResult()

Result of a call to grantOnKey().

public GrantOnKeyResult()
Remarks

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.IAM;

            Grant grant;

            var grantOnKeyResult = new GrantOnKeyResult {
                Grant = grant
            };

Properties

Grant

The Grant object, if a grant was created.

public Grant? Grant { get; set; }
Property Value

Grant

Remarks

Default: No grant

Implements

IGrantOnKeyResult
Back to top Generated by DocFX