Skip to content

Commit 75acad4

Browse files
author
awstools
committed
feat(client-ssm): This release adds new SSM document types ConformancePackTemplate and CloudFormation
1 parent 8f5334a commit 75acad4

File tree

2 files changed

+2995
-2107
lines changed

2 files changed

+2995
-2107
lines changed

clients/client-ssm/src/models/models_0.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)