Interface CfnServiceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-06-16T16:14:46.575Z")
@Stability(Stable)
public interface CfnServiceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnServicePropsMixin.
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.resiliencehubv2.*;
CfnServiceMixinProps cfnServiceMixinProps = CfnServiceMixinProps.builder()
.assertions(List.of(AssertionDefinitionProperty.builder()
.text("text")
.build()))
.associatedSystems(List.of(AssociatedSystemProperty.builder()
.systemArn("systemArn")
.userJourneyIds(List.of("userJourneyIds"))
.build()))
.dependencyDiscovery("dependencyDiscovery")
.description("description")
.inputSources(List.of(InputSourceDefinitionProperty.builder()
.resourceConfiguration(ResourceConfigurationProperty.builder()
.cfnStackArn("cfnStackArn")
.designFileS3Url("designFileS3Url")
.eks(EksSourceProperty.builder()
.clusterArn("clusterArn")
.namespaces(List.of("namespaces"))
.build())
.resourceTags(List.of(ResourceTagProperty.builder()
.key("key")
.values(List.of("values"))
.build()))
.tfStateFileUrl("tfStateFileUrl")
.build())
.build()))
.kmsKeyId("kmsKeyId")
.name("name")
.permissionModel(PermissionModelProperty.builder()
.crossAccountRoleArns(List.of(CrossAccountRoleConfigurationProperty.builder()
.crossAccountRoleArn("crossAccountRoleArn")
.externalId("externalId")
.build()))
.invokerRoleName("invokerRoleName")
.build())
.policyArn("policyArn")
.regions(List.of("regions"))
.reportConfiguration(ServiceReportConfigurationProperty.builder()
.reportOutput(List.of(ReportOutputConfigurationProperty.builder()
.s3(S3ReportOutputConfigurationProperty.builder()
.bucketOwner("bucketOwner")
.bucketPath("bucketPath")
.build())
.build()))
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServiceMixinPropsstatic final classAn implementation forCfnServiceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnServiceMixinProps.Builderbuilder()default ObjectAssertions associated with this service.default ObjectSystems associated with this service.default StringDependency discovery state.default StringThe description of the service.default ObjectInput sources for this service.default StringThe KMS key ID for encrypting service data.default StringgetName()The name of the service.default ObjectReturns union: eitherIResolvableorCfnServicePropsMixin.PermissionModelPropertydefault StringThe ARN of the resilience policy to associate.AWS regions for the service.default ObjectConfiguration for automatic report generation on a Service.getTags()Tags assigned to the service.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssertions
Assertions associated with this service.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnServicePropsMixin.AssertionDefinitionProperty>- See Also:
-
getAssociatedSystems
Systems associated with this service.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnServicePropsMixin.AssociatedSystemProperty>- See Also:
-
getDependencyDiscovery
Dependency discovery state.- See Also:
-
getDescription
The description of the service.- See Also:
-
getInputSources
Input sources for this service.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnServicePropsMixin.InputSourceDefinitionProperty>- See Also:
-
getKmsKeyId
The KMS key ID for encrypting service data.- See Also:
-
getName
The name of the service.- See Also:
-
getPermissionModel
Returns union: eitherIResolvableorCfnServicePropsMixin.PermissionModelProperty- See Also:
-
getPolicyArn
The ARN of the resilience policy to associate.- See Also:
-
getRegions
AWS regions for the service.- See Also:
-
getReportConfiguration
Configuration for automatic report generation on a Service.Returns union: either
IResolvableorCfnServicePropsMixin.ServiceReportConfigurationProperty- See Also:
-
getTags
Tags assigned to the service.- See Also:
-
builder
- Returns:
- a
CfnServiceMixinProps.BuilderofCfnServiceMixinProps
-