Interface CfnCapabilityMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCapabilityMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:56.227Z") @Stability(Stable) public interface CfnCapabilityMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnCapabilityPropsMixin.

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.b2bi.*;
 CfnCapabilityMixinProps cfnCapabilityMixinProps = CfnCapabilityMixinProps.builder()
         .configuration(CapabilityConfigurationProperty.builder()
                 .edi(EdiConfigurationProperty.builder()
                         .capabilityDirection("capabilityDirection")
                         .inputLocation(S3LocationProperty.builder()
                                 .bucketName("bucketName")
                                 .key("key")
                                 .build())
                         .outputLocation(S3LocationProperty.builder()
                                 .bucketName("bucketName")
                                 .key("key")
                                 .build())
                         .transformerId("transformerId")
                         .type(EdiTypeProperty.builder()
                                 .x12Details(X12DetailsProperty.builder()
                                         .transactionSet("transactionSet")
                                         .version("version")
                                         .build())
                                 .build())
                         .build())
                 .build())
         .instructionsDocuments(List.of(S3LocationProperty.builder()
                 .bucketName("bucketName")
                 .key("key")
                 .build()))
         .name("name")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .type("type")
         .build();
 

See Also: