@Stability(value=Stable)
public static interface CfnPatchBaseline.PatchFilterProperty
extends software.amazon.jsii.JsiiSerializable
The PatchFilters property of the PatchFilterGroup property type contains a list of PatchFilter property types.
You can view lists of valid values for the patch properties by running the DescribePatchProperties command. For more information, see DescribePatchProperties in the AWS Systems Manager API Reference .
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.*;
PatchFilterProperty patchFilterProperty = PatchFilterProperty.builder()
.key("key")
.values(List.of("values"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPatchBaseline.PatchFilterProperty.Builder
A builder for
CfnPatchBaseline.PatchFilterProperty |
static class |
CfnPatchBaseline.PatchFilterProperty.Jsii$Proxy
An implementation for
CfnPatchBaseline.PatchFilterProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPatchBaseline.PatchFilterProperty.Builder |
builder() |
default String |
getKey()
The key for the filter.
|
default List<String> |
getValues()
The value for the filter key.
|
@Stability(value=Stable) @Nullable default String getKey()
For information about valid keys, see PatchFilter in the AWS Systems Manager API Reference .
@Stability(value=Stable) @Nullable default List<String> getValues()
For information about valid values for each key based on operating system type, see PatchFilter in the AWS Systems Manager API Reference .
@Stability(value=Stable) static CfnPatchBaseline.PatchFilterProperty.Builder builder()
Copyright © 2022. All rights reserved.