Table of Contents

Interface IParameter

Namespace
Amazon.CDK.AWS.SSM
Assembly
Amazon.CDK.AWS.SSM.dll

An SSM Parameter reference.

public interface IParameter : IResource, IConstruct, IConstruct, IDependable

Properties

ParameterArn

The ARN of the SSM Parameter resource.

string ParameterArn { get; }

Property Value

string

Remarks

Attribute: true

ParameterName

The name of the SSM Parameter resource.

string ParameterName { get; }

Property Value

string

Remarks

Attribute: true

ParameterType

The type of the SSM Parameter resource.

string ParameterType { get; }

Property Value

string

Remarks

Attribute: true

Methods

GrantRead(IGrantable)

Grants read (DescribeParameter, GetParameter, GetParameterHistory) permissions on the SSM Parameter.

Grant GrantRead(IGrantable grantee)

Parameters

grantee IGrantable

the role to be granted read-only access to the parameter.

Returns

Grant

GrantWrite(IGrantable)

Grants write (PutParameter) permissions on the SSM Parameter.

Grant GrantWrite(IGrantable grantee)

Parameters

grantee IGrantable

the role to be granted write access to the parameter.

Returns

Grant