Interface CfnApiKeyMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApiKeyMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.957Z")
@Stability(Stable)
public interface CfnApiKeyMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApiKeyPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appsync.*;
CfnApiKeyMixinProps cfnApiKeyMixinProps = CfnApiKeyMixinProps.builder()
.apiId("apiId")
.description("description")
.expires(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApiKeyMixinPropsstatic final classAn implementation forCfnApiKeyMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
Unique AWS AppSync GraphQL API ID for this API key.- See Also:
-
getDescription
Unique description of your API key.- See Also:
-
getExpires
The time after which the API key expires.The date is represented as seconds since the epoch, rounded down to the nearest hour.
- See Also:
-
builder
- Returns:
- a
CfnApiKeyMixinProps.BuilderofCfnApiKeyMixinProps
-