Interface CfnSecurityKeyProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityKeyProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:59.406Z")
@Stability(Stable)
public interface CfnSecurityKeyProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSecurityKey
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.connect.*; CfnSecurityKeyProps cfnSecurityKeyProps = CfnSecurityKeyProps.builder() .instanceId("instanceId") .key("key") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSecurityKeyProps
static final class
An implementation forCfnSecurityKeyProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSecurityKeyProps.Builder
builder()
The Amazon Resource Name (ARN) of the instance.getKey()
A valid security key in PEM format.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceId
The Amazon Resource Name (ARN) of the instance.Minimum :
1
Maximum :
100
- See Also:
-
getKey
A valid security key in PEM format. For example:."-----BEGIN PUBLIC KEY-----\ [a lot of characters] ----END PUBLIC KEY-----"
Minimum :
1
Maximum :
1024
- See Also:
-
builder
- Returns:
- a
CfnSecurityKeyProps.Builder
ofCfnSecurityKeyProps
-