File tree Expand file tree Collapse file tree 2 files changed +2995
-2107
lines changed
clients/client-ssm/src/models
codegen/sdk-codegen/aws-models Expand file tree Collapse file tree 2 files changed +2995
-2107
lines changed Original file line number Diff line number Diff line change @@ -1664,7 +1664,11 @@ export interface CreateAssociationBatchRequest {
16641664 Entries : CreateAssociationBatchRequestEntry [ ] | undefined ;
16651665}
16661666
1667- export type Fault = "Client" | "Server" | "Unknown" ;
1667+ export enum Fault {
1668+ Client = "Client" ,
1669+ Server = "Server" ,
1670+ Unknown = "Unknown" ,
1671+ }
16681672
16691673/**
16701674 * <p>Describes a failed association.</p>
@@ -1771,7 +1775,9 @@ export enum DocumentType {
17711775 Automation = "Automation" ,
17721776 ChangeCalendar = "ChangeCalendar" ,
17731777 ChangeTemplate = "Automation.ChangeTemplate" ,
1778+ CloudFormation = "CloudFormation" ,
17741779 Command = "Command" ,
1780+ ConformancePackTemplate = "ConformancePackTemplate" ,
17751781 DeploymentStrategy = "DeploymentStrategy" ,
17761782 Package = "Package" ,
17771783 Policy = "Policy" ,
@@ -1942,7 +1948,10 @@ export enum DocumentHashType {
19421948 SHA256 = "Sha256" ,
19431949}
19441950
1945- export type DocumentParameterType = "String" | "StringList" ;
1951+ export enum DocumentParameterType {
1952+ String = "String" ,
1953+ StringList = "StringList" ,
1954+ }
19461955
19471956/**
19481957 * <p>Parameters specified in a System Manager document that run on the server when the command is
You can’t perform that action at this time.
0 commit comments