Interface ICfnSecurityKeyProps
Properties for defining a CfnSecurityKey
.
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnSecurityKeyProps
Syntax (vb)
Public Interface ICfnSecurityKeyProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-securitykey.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.Connect;
var cfnSecurityKeyProps = new CfnSecurityKeyProps {
InstanceId = "instanceId",
Key = "key"
};
Synopsis
Properties
InstanceId | The Amazon Resource Name (ARN) of the instance. |
Key | A valid security key in PEM format. For example:. |
Properties
InstanceId
The Amazon Resource Name (ARN) of the instance.
string InstanceId { get; }
Property Value
System.String
Remarks
Key
A valid security key in PEM format. For example:.
string Key { get; }
Property Value
System.String
Remarks
"-----BEGIN PUBLIC KEY-----\ [a lot of characters] ----END PUBLIC KEY-----"
Minimum : 1
Maximum : 1024