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-03-11T13:20:01.238Z")
@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.m2.*;
CfnApplicationMixinProps cfnApplicationMixinProps = CfnApplicationMixinProps.builder()
.definition(DefinitionProperty.builder()
.content("content")
.s3Location("s3Location")
.build())
.description("description")
.engineType("engineType")
.kmsKeyId("kmsKeyId")
.name("name")
.roleArn("roleArn")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationMixinPropsstatic final classAn implementation forCfnApplicationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe application definition for a particular application.default StringThe description of the application.default StringThe type of the target platform for this application.default StringThe identifier of a customer managed key.default StringgetName()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
-
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
IResolvableorCfnApplicationPropsMixin.DefinitionProperty- See Also:
-
getDescription
The description of the application.- See Also:
-
getEngineType
The type of the target platform for this application.- See Also:
-
getKmsKeyId
The identifier of a customer managed key.- See Also:
-
getName
The name of the application.- 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
CfnApplicationMixinProps.BuilderofCfnApplicationMixinProps
-