Interface CfnApplicationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:19.286Z")
@Stability(Stable)
public interface CfnApplicationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApplicationPropsMixin.
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.securityagent.*;
CfnApplicationMixinProps cfnApplicationMixinProps = CfnApplicationMixinProps.builder()
.defaultKmsKeyId("defaultKmsKeyId")
.idCConfiguration(IdCConfigurationProperty.builder()
.idCApplicationArn("idCApplicationArn")
.idCInstanceArn("idCInstanceArn")
.build())
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationMixinPropsstatic final classAn implementation forCfnApplicationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringIdentifier of a KMS key.default ObjectReturns union: eitherIResolvableorCfnApplicationPropsMixin.IdCConfigurationPropertydefault StringgetTags()Tags for the application.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultKmsKeyId
Identifier of a KMS key.Can be a key ID, key ARN, alias name, or alias ARN.
- See Also:
-
getIdCConfiguration
Returns union: eitherIResolvableorCfnApplicationPropsMixin.IdCConfigurationProperty- See Also:
-
getRoleArn
- See Also:
-
getTags
Tags for the application.- See Also:
-
builder
- Returns:
- a
CfnApplicationMixinProps.BuilderofCfnApplicationMixinProps
-