Interface CfnCapabilityProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:03.199Z") @Stability(Stable) public interface CfnCapabilityProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCapability.

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.b2bi.*;
 CfnCapabilityProps cfnCapabilityProps = CfnCapabilityProps.builder()
         .configuration(CapabilityConfigurationProperty.builder()
                 .edi(EdiConfigurationProperty.builder()
                         .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())
         .name("name")
         .type("type")
         // the properties below are optional
         .instructionsDocuments(List.of(S3LocationProperty.builder()
                 .bucketName("bucketName")
                 .key("key")
                 .build()))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: