SignatureProps
Properties for defining a Signature.
See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-apigateway-signature
Initializer
import com.aliyun.ros.cdk.apigateway.SignatureProps;
SignatureProps.builder()
.signatureKey(java.lang.String)
.signatureKey(IResolvable)
.signatureName(java.lang.String)
.signatureName(IResolvable)
.signatureSecret(java.lang.String)
.signatureSecret(IResolvable)
.build();
Properties
| Name | Type | Description |
|---|---|---|
signatureKey | java.lang.String OR com.aliyun.ros.cdk.core.IResolvable | Property signatureKey: The Key value of the key. |
signatureName | java.lang.String OR com.aliyun.ros.cdk.core.IResolvable | Property signatureName: The displayed name of the key. |
signatureSecret | java.lang.String OR com.aliyun.ros.cdk.core.IResolvable | Property signatureSecret: The Secret value of the key. |
signatureKeyRequired
public java.lang.Object getSignatureKey();
- Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable
Property signatureKey: The Key value of the key.
The value must be 6 to 20 characters in length and can contain letters, digits, and underscores (_). It must start with a letter.
signatureNameRequired
public java.lang.Object getSignatureName();
- Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable
Property signatureName: The displayed name of the key.
The name must be 4 to 50 characters in length and can contain letters, digits, and underscores (_). It must start with a letter.
signatureSecretRequired
public java.lang.Object getSignatureSecret();
- Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable
Property signatureSecret: The Secret value of the key.
The value must be 6 to 30 characters in length and can contain letters, digits, and special characters. Special characters include underscores (_), at signs (@), number signs (#), exclamation points (!), and asterisks (*). The value must start with a letter.