Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:41.852Z")
@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.m2.*;
CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
.engineType("engineType")
.name("name")
// the properties below are optional
.definition(DefinitionProperty.builder()
.content("content")
.s3Location("s3Location")
.build())
.description("description")
.kmsKeyId("kmsKeyId")
.roleArn("roleArn")
.tags(Map.of(
"tagsKey", "tags"))
.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 ObjectThe application definition for a particular application.default StringThe description of the application.The type of the target platform for this application.default StringThe identifier of a customer managed key.getName()The name of the application.default StringThe Amazon Resource Name (ARN) of the role associated with the application.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEngineType
The type of the target platform for this application.- See Also:
-
getName
The name of the application.- See Also:
-
getDefinition
The application definition for a particular application. You can specify either inline JSON or an Amazon S3 bucket location.For information about application definitions, see the AWS Mainframe Modernization User Guide .
Returns union: either
IResolvableorCfnApplication.DefinitionProperty- See Also:
-
getDescription
The description of the application.- See Also:
-
getKmsKeyId
The identifier of a customer managed key.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the role associated with the application.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnApplicationProps.BuilderofCfnApplicationProps
-