Interface CfnAgentSpace.OperatorAppProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAgentSpace.OperatorAppProperty.Jsii$Proxy
Enclosing class:
CfnAgentSpace

@Stability(Stable) public static interface CfnAgentSpace.OperatorAppProperty extends software.amazon.jsii.JsiiSerializable
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.devopsagent.*;
 OperatorAppProperty operatorAppProperty = OperatorAppProperty.builder()
         .iam(IamAuthConfigurationProperty.builder()
                 .operatorAppRoleArn("operatorAppRoleArn")
                 // the properties below are optional
                 .createdAt("createdAt")
                 .updatedAt("updatedAt")
                 .build())
         .idc(IdcAuthConfigurationProperty.builder()
                 .idcInstanceArn("idcInstanceArn")
                 .operatorAppRoleArn("operatorAppRoleArn")
                 // the properties below are optional
                 .createdAt("createdAt")
                 .idcApplicationArn("idcApplicationArn")
                 .updatedAt("updatedAt")
                 .build())
         .build();
 

See Also: