Interface ICfnAccessKeyProps
Properties for defining a CfnAccessKey
.
public interface ICfnAccessKeyProps
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;
var cfnAccessKeyProps = new CfnAccessKeyProps {
UserName = "userName",
// the properties below are optional
Serial = 123,
Status = "status"
};
Remarks
Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
ExampleMetadata: fixture=_generated
Properties
Serial
This value is specific to CloudFormation and can only be incremented .
double? Serial { get; }
Property Value
Remarks
Incrementing this value notifies CloudFormation that you want to rotate your access key. When you update your stack, CloudFormation will replace the existing access key with a new key.
Status
The status of the access key.
string? Status { get; }
Property Value
Remarks
Active
means that the key is valid for API calls, while Inactive
means it is not.
UserName
The name of the IAM user that the new key will belong to.
string UserName { get; }
Property Value
Remarks
This parameter allows (through its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-