Interface CfnPatchBaseline.PatchSourceProperty

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

@Stability(Stable) public static interface CfnPatchBaseline.PatchSourceProperty extends software.amazon.jsii.JsiiSerializable
PatchSource is the property type for the Sources resource of the AWS::SSM::PatchBaseline resource.

The AWS CloudFormation AWS::SSM::PatchSource resource is used to provide information about the patches to use to update target instances, including target operating systems and source repository. Applies to Linux managed nodes only.

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.ssm.*;
 PatchSourceProperty patchSourceProperty = PatchSourceProperty.builder()
         .configuration("configuration")
         .name("name")
         .products(List.of("products"))
         .build();
 

See Also: