Interface CfnSecurityRequirementPack.SecurityRequirementProperty

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

@Stability(Stable) public static interface CfnSecurityRequirementPack.SecurityRequirementProperty 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.securityagent.*;
 SecurityRequirementProperty securityRequirementProperty = SecurityRequirementProperty.builder()
         .description("description")
         .domain("domain")
         .evaluation("evaluation")
         .name("name")
         // the properties below are optional
         .remediation("remediation")
         .build();
 

See Also: