Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:04.504Z")
@Stability(Stable)
public interface CfnApplicationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApplication.
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.securityagent.*;
CfnApplicationProps cfnApplicationProps = CfnApplicationProps.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 forCfnApplicationPropsstatic final classAn implementation forCfnApplicationProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApplicationProps.Builderbuilder()default StringIdentifier of a KMS key.default ObjectReturns union: eitherIResolvableorCfnApplication.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: eitherIResolvableorCfnApplication.IdCConfigurationProperty- See Also:
-
getRoleArn
- See Also:
-
getTags
Tags for the application.- See Also:
-
builder
- Returns:
- a
CfnApplicationProps.BuilderofCfnApplicationProps
-