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 {
1664
1664
Entries : CreateAssociationBatchRequestEntry [ ] | undefined ;
1665
1665
}
1666
1666
1667
- export type Fault = "Client" | "Server" | "Unknown" ;
1667
+ export enum Fault {
1668
+ Client = "Client" ,
1669
+ Server = "Server" ,
1670
+ Unknown = "Unknown" ,
1671
+ }
1668
1672
1669
1673
/**
1670
1674
* <p>Describes a failed association.</p>
@@ -1771,7 +1775,9 @@ export enum DocumentType {
1771
1775
Automation = "Automation" ,
1772
1776
ChangeCalendar = "ChangeCalendar" ,
1773
1777
ChangeTemplate = "Automation.ChangeTemplate" ,
1778
+ CloudFormation = "CloudFormation" ,
1774
1779
Command = "Command" ,
1780
+ ConformancePackTemplate = "ConformancePackTemplate" ,
1775
1781
DeploymentStrategy = "DeploymentStrategy" ,
1776
1782
Package = "Package" ,
1777
1783
Policy = "Policy" ,
@@ -1942,7 +1948,10 @@ export enum DocumentHashType {
1942
1948
SHA256 = "Sha256" ,
1943
1949
}
1944
1950
1945
- export type DocumentParameterType = "String" | "StringList" ;
1951
+ export enum DocumentParameterType {
1952
+ String = "String" ,
1953
+ StringList = "StringList" ,
1954
+ }
1946
1955
1947
1956
/**
1948
1957
* <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