aws-sdk-for-zig/codegen/models/ssm.2014-11-06.json

25419 lines
1.2 MiB

{
"smithy": "1.0",
"metadata": {
"suppressions": [
{
"id": "HttpMethodSemantics",
"namespace": "*"
},
{
"id": "HttpResponseCodeSemantics",
"namespace": "*"
},
{
"id": "PaginatedTrait",
"namespace": "*"
},
{
"id": "HttpHeaderTrait",
"namespace": "*"
},
{
"id": "HttpUriConflict",
"namespace": "*"
},
{
"id": "Service",
"namespace": "*"
}
]
},
"shapes": {
"com.amazonaws.ssm#Account": {
"type": "string"
},
"com.amazonaws.ssm#AccountId": {
"type": "string",
"traits": {
"smithy.api#pattern": "(?i)all|[0-9]{12}"
}
},
"com.amazonaws.ssm#AccountIdList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AccountId",
"traits": {
"smithy.api#xmlName": "AccountId"
}
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 20
}
}
},
"com.amazonaws.ssm#AccountSharingInfo": {
"type": "structure",
"members": {
"AccountId": {
"target": "com.amazonaws.ssm#AccountId",
"traits": {
"smithy.api#documentation": "<p>The AWS account ID where the current document is shared.</p>"
}
},
"SharedDocumentVersion": {
"target": "com.amazonaws.ssm#SharedDocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the current document shared with the account.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information includes the AWS account ID where the current document is shared and the version\n shared with that account.</p>"
}
},
"com.amazonaws.ssm#AccountSharingInfoList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AccountSharingInfo",
"traits": {
"smithy.api#xmlName": "AccountSharingInfo"
}
},
"traits": {
"smithy.api#documentation": "<p>A list of of AWS accounts where the current document is shared and the version shared with\n each account.</p>"
}
},
"com.amazonaws.ssm#Accounts": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Account"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#Activation": {
"type": "structure",
"members": {
"ActivationId": {
"target": "com.amazonaws.ssm#ActivationId",
"traits": {
"smithy.api#documentation": "<p>The ID created by Systems Manager when you submitted the activation.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#ActivationDescription",
"traits": {
"smithy.api#documentation": "<p>A user defined description of the activation.</p>"
}
},
"DefaultInstanceName": {
"target": "com.amazonaws.ssm#DefaultInstanceName",
"traits": {
"smithy.api#documentation": "<p>A name for the managed instance when it is created.</p>"
}
},
"IamRole": {
"target": "com.amazonaws.ssm#IamRole",
"traits": {
"smithy.api#documentation": "<p>The Amazon Identity and Access Management (IAM) role to assign to the managed\n instance.</p>"
}
},
"RegistrationLimit": {
"target": "com.amazonaws.ssm#RegistrationLimit",
"traits": {
"smithy.api#documentation": "<p>The maximum number of managed instances that can be registered using this activation.</p>"
}
},
"RegistrationsCount": {
"target": "com.amazonaws.ssm#RegistrationsCount",
"traits": {
"smithy.api#documentation": "<p>The number of managed instances already registered with this activation.</p>"
}
},
"ExpirationDate": {
"target": "com.amazonaws.ssm#ExpirationDate",
"traits": {
"smithy.api#documentation": "<p>The date when this activation can no longer be used to register managed instances.</p>"
}
},
"Expired": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#documentation": "<p>Whether or not the activation is expired.</p>"
}
},
"CreatedDate": {
"target": "com.amazonaws.ssm#CreatedDate",
"traits": {
"smithy.api#documentation": "<p>The date the activation was created.</p>"
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>Tags assigned to the activation.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An activation registers one or more on-premises servers or virtual machines (VMs) with AWS\n so that you can configure those servers or VMs using Run Command. A server or VM that has been\n registered with AWS is called a managed instance.</p>"
}
},
"com.amazonaws.ssm#ActivationCode": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 20,
"max": 250
}
}
},
"com.amazonaws.ssm#ActivationDescription": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 256
}
}
},
"com.amazonaws.ssm#ActivationId": {
"type": "string",
"traits": {
"smithy.api#pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
}
},
"com.amazonaws.ssm#ActivationList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Activation"
}
},
"com.amazonaws.ssm#AddTagsToResource": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#AddTagsToResourceRequest"
},
"output": {
"target": "com.amazonaws.ssm#AddTagsToResourceResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidResourceId"
},
{
"target": "com.amazonaws.ssm#InvalidResourceType"
},
{
"target": "com.amazonaws.ssm#TooManyTagsError"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
}
],
"traits": {
"smithy.api#documentation": "<p>Adds or overwrites one or more tags for the specified resource. Tags are metadata that you\n can assign to your documents, managed instances, maintenance windows, Parameter Store parameters,\n and patch baselines. Tags enable you to categorize your resources in different ways, for example,\n by purpose, owner, or environment. Each tag consists of a key and an optional value, both of\n which you define. For example, you could define a set of tags for your account's managed\n instances that helps you track each instance's owner and stack level. For example: Key=Owner and\n Value=DbAdmin, SysAdmin, or Dev. Or Key=Stack and Value=Production, Pre-Production, or\n Test.</p>\n <p>Each resource can have a maximum of 50 tags. </p>\n <p>We recommend that you devise a set of tag keys that meets your needs for each resource type.\n Using a consistent set of tag keys makes it easier for you to manage your resources. You can\n search and filter the resources based on the tags you add. Tags don't have any semantic meaning\n to and are interpreted strictly as a string of characters. </p>\n <p>For more information about using tags with EC2 instances, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html\">Tagging your Amazon EC2 resources</a> in the\n <i>Amazon EC2 User Guide</i>.</p>"
}
},
"com.amazonaws.ssm#AddTagsToResourceRequest": {
"type": "structure",
"members": {
"ResourceType": {
"target": "com.amazonaws.ssm#ResourceTypeForTagging",
"traits": {
"smithy.api#documentation": "<p>Specifies the type of resource you are tagging.</p>\n <note>\n <p>The ManagedInstance type for this API action is for on-premises managed instances. You must\n specify the name of the managed instance in the following format: mi-ID_number. For example,\n mi-1a2b3c4d5e6f.</p>\n </note>",
"smithy.api#required": {}
}
},
"ResourceId": {
"target": "com.amazonaws.ssm#ResourceId",
"traits": {
"smithy.api#documentation": "<p>The resource ID you want to tag.</p>\n <p>Use the ID of the resource. Here are some examples:</p>\n <p>ManagedInstance: mi-012345abcde</p>\n <p>MaintenanceWindow: mw-012345abcde</p>\n <p>PatchBaseline: pb-012345abcde</p>\n <p>OpsMetadata object: <code>ResourceID</code> for tagging is created from the Amazon Resource\n Name (ARN) for the object. Specifically, <code>ResourceID</code> is created from the strings that\n come after the word <code>opsmetadata</code> in the ARN. For example, an OpsMetadata object with\n an ARN of <code>arn:aws:ssm:us-east-2:1234567890:opsmetadata/aws/ssm/MyGroup/appmanager</code>\n has a <code>ResourceID</code> of either <code>aws/ssm/MyGroup/appmanager</code> or\n <code>/aws/ssm/MyGroup/appmanager</code>.</p>\n <p>For the Document and Parameter values, use the name of the resource.</p>\n <note>\n <p>The ManagedInstance type for this API action is only for on-premises managed instances. You\n must specify the name of the managed instance in the following format: mi-ID_number. For\n example, mi-1a2b3c4d5e6f.</p>\n </note>",
"smithy.api#required": {}
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>One or more tags. The value parameter is required.</p>\n <important>\n <p>Do not enter personally identifiable information in this field.</p>\n </important>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#AddTagsToResourceResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#AgentErrorCode": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 10
}
}
},
"com.amazonaws.ssm#AggregatorSchemaOnly": {
"type": "boolean"
},
"com.amazonaws.ssm#AllowedPattern": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 1024
}
}
},
"com.amazonaws.ssm#AlreadyExistsException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Error returned if an attempt is made to register a patch group with a patch baseline that is\n already registered with a different patch baseline.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AmazonSSM": {
"type": "service",
"version": "2014-11-06",
"operations": [
{
"target": "com.amazonaws.ssm#AddTagsToResource"
},
{
"target": "com.amazonaws.ssm#AssociateOpsItemRelatedItem"
},
{
"target": "com.amazonaws.ssm#CancelCommand"
},
{
"target": "com.amazonaws.ssm#CancelMaintenanceWindowExecution"
},
{
"target": "com.amazonaws.ssm#CreateActivation"
},
{
"target": "com.amazonaws.ssm#CreateAssociation"
},
{
"target": "com.amazonaws.ssm#CreateAssociationBatch"
},
{
"target": "com.amazonaws.ssm#CreateDocument"
},
{
"target": "com.amazonaws.ssm#CreateMaintenanceWindow"
},
{
"target": "com.amazonaws.ssm#CreateOpsItem"
},
{
"target": "com.amazonaws.ssm#CreateOpsMetadata"
},
{
"target": "com.amazonaws.ssm#CreatePatchBaseline"
},
{
"target": "com.amazonaws.ssm#CreateResourceDataSync"
},
{
"target": "com.amazonaws.ssm#DeleteActivation"
},
{
"target": "com.amazonaws.ssm#DeleteAssociation"
},
{
"target": "com.amazonaws.ssm#DeleteDocument"
},
{
"target": "com.amazonaws.ssm#DeleteInventory"
},
{
"target": "com.amazonaws.ssm#DeleteMaintenanceWindow"
},
{
"target": "com.amazonaws.ssm#DeleteOpsMetadata"
},
{
"target": "com.amazonaws.ssm#DeleteParameter"
},
{
"target": "com.amazonaws.ssm#DeleteParameters"
},
{
"target": "com.amazonaws.ssm#DeletePatchBaseline"
},
{
"target": "com.amazonaws.ssm#DeleteResourceDataSync"
},
{
"target": "com.amazonaws.ssm#DeregisterManagedInstance"
},
{
"target": "com.amazonaws.ssm#DeregisterPatchBaselineForPatchGroup"
},
{
"target": "com.amazonaws.ssm#DeregisterTargetFromMaintenanceWindow"
},
{
"target": "com.amazonaws.ssm#DeregisterTaskFromMaintenanceWindow"
},
{
"target": "com.amazonaws.ssm#DescribeActivations"
},
{
"target": "com.amazonaws.ssm#DescribeAssociation"
},
{
"target": "com.amazonaws.ssm#DescribeAssociationExecutions"
},
{
"target": "com.amazonaws.ssm#DescribeAssociationExecutionTargets"
},
{
"target": "com.amazonaws.ssm#DescribeAutomationExecutions"
},
{
"target": "com.amazonaws.ssm#DescribeAutomationStepExecutions"
},
{
"target": "com.amazonaws.ssm#DescribeAvailablePatches"
},
{
"target": "com.amazonaws.ssm#DescribeDocument"
},
{
"target": "com.amazonaws.ssm#DescribeDocumentPermission"
},
{
"target": "com.amazonaws.ssm#DescribeEffectiveInstanceAssociations"
},
{
"target": "com.amazonaws.ssm#DescribeEffectivePatchesForPatchBaseline"
},
{
"target": "com.amazonaws.ssm#DescribeInstanceAssociationsStatus"
},
{
"target": "com.amazonaws.ssm#DescribeInstanceInformation"
},
{
"target": "com.amazonaws.ssm#DescribeInstancePatches"
},
{
"target": "com.amazonaws.ssm#DescribeInstancePatchStates"
},
{
"target": "com.amazonaws.ssm#DescribeInstancePatchStatesForPatchGroup"
},
{
"target": "com.amazonaws.ssm#DescribeInventoryDeletions"
},
{
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowExecutions"
},
{
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTaskInvocations"
},
{
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTasks"
},
{
"target": "com.amazonaws.ssm#DescribeMaintenanceWindows"
},
{
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowSchedule"
},
{
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowsForTarget"
},
{
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowTargets"
},
{
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowTasks"
},
{
"target": "com.amazonaws.ssm#DescribeOpsItems"
},
{
"target": "com.amazonaws.ssm#DescribeParameters"
},
{
"target": "com.amazonaws.ssm#DescribePatchBaselines"
},
{
"target": "com.amazonaws.ssm#DescribePatchGroups"
},
{
"target": "com.amazonaws.ssm#DescribePatchGroupState"
},
{
"target": "com.amazonaws.ssm#DescribePatchProperties"
},
{
"target": "com.amazonaws.ssm#DescribeSessions"
},
{
"target": "com.amazonaws.ssm#DisassociateOpsItemRelatedItem"
},
{
"target": "com.amazonaws.ssm#GetAutomationExecution"
},
{
"target": "com.amazonaws.ssm#GetCalendarState"
},
{
"target": "com.amazonaws.ssm#GetCommandInvocation"
},
{
"target": "com.amazonaws.ssm#GetConnectionStatus"
},
{
"target": "com.amazonaws.ssm#GetDefaultPatchBaseline"
},
{
"target": "com.amazonaws.ssm#GetDeployablePatchSnapshotForInstance"
},
{
"target": "com.amazonaws.ssm#GetDocument"
},
{
"target": "com.amazonaws.ssm#GetInventory"
},
{
"target": "com.amazonaws.ssm#GetInventorySchema"
},
{
"target": "com.amazonaws.ssm#GetMaintenanceWindow"
},
{
"target": "com.amazonaws.ssm#GetMaintenanceWindowExecution"
},
{
"target": "com.amazonaws.ssm#GetMaintenanceWindowExecutionTask"
},
{
"target": "com.amazonaws.ssm#GetMaintenanceWindowExecutionTaskInvocation"
},
{
"target": "com.amazonaws.ssm#GetMaintenanceWindowTask"
},
{
"target": "com.amazonaws.ssm#GetOpsItem"
},
{
"target": "com.amazonaws.ssm#GetOpsMetadata"
},
{
"target": "com.amazonaws.ssm#GetOpsSummary"
},
{
"target": "com.amazonaws.ssm#GetParameter"
},
{
"target": "com.amazonaws.ssm#GetParameterHistory"
},
{
"target": "com.amazonaws.ssm#GetParameters"
},
{
"target": "com.amazonaws.ssm#GetParametersByPath"
},
{
"target": "com.amazonaws.ssm#GetPatchBaseline"
},
{
"target": "com.amazonaws.ssm#GetPatchBaselineForPatchGroup"
},
{
"target": "com.amazonaws.ssm#GetServiceSetting"
},
{
"target": "com.amazonaws.ssm#LabelParameterVersion"
},
{
"target": "com.amazonaws.ssm#ListAssociations"
},
{
"target": "com.amazonaws.ssm#ListAssociationVersions"
},
{
"target": "com.amazonaws.ssm#ListCommandInvocations"
},
{
"target": "com.amazonaws.ssm#ListCommands"
},
{
"target": "com.amazonaws.ssm#ListComplianceItems"
},
{
"target": "com.amazonaws.ssm#ListComplianceSummaries"
},
{
"target": "com.amazonaws.ssm#ListDocumentMetadataHistory"
},
{
"target": "com.amazonaws.ssm#ListDocuments"
},
{
"target": "com.amazonaws.ssm#ListDocumentVersions"
},
{
"target": "com.amazonaws.ssm#ListInventoryEntries"
},
{
"target": "com.amazonaws.ssm#ListOpsItemEvents"
},
{
"target": "com.amazonaws.ssm#ListOpsItemRelatedItems"
},
{
"target": "com.amazonaws.ssm#ListOpsMetadata"
},
{
"target": "com.amazonaws.ssm#ListResourceComplianceSummaries"
},
{
"target": "com.amazonaws.ssm#ListResourceDataSync"
},
{
"target": "com.amazonaws.ssm#ListTagsForResource"
},
{
"target": "com.amazonaws.ssm#ModifyDocumentPermission"
},
{
"target": "com.amazonaws.ssm#PutComplianceItems"
},
{
"target": "com.amazonaws.ssm#PutInventory"
},
{
"target": "com.amazonaws.ssm#PutParameter"
},
{
"target": "com.amazonaws.ssm#RegisterDefaultPatchBaseline"
},
{
"target": "com.amazonaws.ssm#RegisterPatchBaselineForPatchGroup"
},
{
"target": "com.amazonaws.ssm#RegisterTargetWithMaintenanceWindow"
},
{
"target": "com.amazonaws.ssm#RegisterTaskWithMaintenanceWindow"
},
{
"target": "com.amazonaws.ssm#RemoveTagsFromResource"
},
{
"target": "com.amazonaws.ssm#ResetServiceSetting"
},
{
"target": "com.amazonaws.ssm#ResumeSession"
},
{
"target": "com.amazonaws.ssm#SendAutomationSignal"
},
{
"target": "com.amazonaws.ssm#SendCommand"
},
{
"target": "com.amazonaws.ssm#StartAssociationsOnce"
},
{
"target": "com.amazonaws.ssm#StartAutomationExecution"
},
{
"target": "com.amazonaws.ssm#StartChangeRequestExecution"
},
{
"target": "com.amazonaws.ssm#StartSession"
},
{
"target": "com.amazonaws.ssm#StopAutomationExecution"
},
{
"target": "com.amazonaws.ssm#TerminateSession"
},
{
"target": "com.amazonaws.ssm#UnlabelParameterVersion"
},
{
"target": "com.amazonaws.ssm#UpdateAssociation"
},
{
"target": "com.amazonaws.ssm#UpdateAssociationStatus"
},
{
"target": "com.amazonaws.ssm#UpdateDocument"
},
{
"target": "com.amazonaws.ssm#UpdateDocumentDefaultVersion"
},
{
"target": "com.amazonaws.ssm#UpdateDocumentMetadata"
},
{
"target": "com.amazonaws.ssm#UpdateMaintenanceWindow"
},
{
"target": "com.amazonaws.ssm#UpdateMaintenanceWindowTarget"
},
{
"target": "com.amazonaws.ssm#UpdateMaintenanceWindowTask"
},
{
"target": "com.amazonaws.ssm#UpdateManagedInstanceRole"
},
{
"target": "com.amazonaws.ssm#UpdateOpsItem"
},
{
"target": "com.amazonaws.ssm#UpdateOpsMetadata"
},
{
"target": "com.amazonaws.ssm#UpdatePatchBaseline"
},
{
"target": "com.amazonaws.ssm#UpdateResourceDataSync"
},
{
"target": "com.amazonaws.ssm#UpdateServiceSetting"
}
],
"traits": {
"aws.api#service": {
"sdkId": "SSM",
"arnNamespace": "ssm",
"cloudFormationName": "SSM",
"cloudTrailEventSource": "ssm.amazonaws.com",
"endpointPrefix": "ssm"
},
"aws.auth#sigv4": {
"name": "ssm"
},
"aws.protocols#awsJson1_1": {},
"smithy.api#documentation": "<fullname>AWS Systems Manager</fullname>\n <p>AWS Systems Manager is a collection of capabilities that helps you automate management tasks such as\n collecting system inventory, applying operating system (OS) patches, automating the creation of\n Amazon Machine Images (AMIs), and configuring operating systems (OSs) and applications at scale.\n Systems Manager lets you remotely and securely manage the configuration of your managed instances. A\n <i>managed instance</i> is any Amazon Elastic Compute Cloud instance (EC2 instance), or any\n on-premises server or virtual machine (VM) in your hybrid environment that has been configured\n for Systems Manager.</p>\n <p>This reference is intended to be used with the <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/\">AWS Systems Manager User Guide</a>.</p>\n <p>To get started, verify prerequisites and configure managed instances. For more information,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-setting-up.html\">Setting up\n AWS Systems Manager</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n <p class=\"title\">\n <b>Related resources</b>\n </p>\n <ul>\n <li>\n <p>For information about how to use a Query API, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/making-api-requests.html\">Making API requests</a>. </p>\n </li>\n <li>\n <p>For information about other API actions you can perform on EC2 instances, see the <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/\">Amazon EC2 API Reference</a>.</p>\n </li>\n <li>\n <p>For information about AWS AppConfig, a capability of Systems Manager, see the <a href=\"https://docs.aws.amazon.com/appconfig/latest/userguide/\">AWS AppConfig User Guide</a> and the <a href=\"https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/\">AWS AppConfig API\n Reference</a>.</p>\n </li>\n <li>\n <p>For information about AWS Incident Manager, a capability of Systems Manager, see the <a href=\"https://docs.aws.amazon.com/incident-manager/latest/userguide/\">AWS Incident Manager User Guide</a>\n and the <a href=\"https://docs.aws.amazon.com/incident-manager/latest/APIReference/\">AWS Incident Manager API\n Reference</a>.</p>\n </li>\n </ul>",
"smithy.api#title": "Amazon Simple Systems Manager (SSM)",
"smithy.api#xmlNamespace": {
"uri": "http://ssm.amazonaws.com/doc/2014-11-06/"
}
}
},
"com.amazonaws.ssm#ApplyOnlyAtCronInterval": {
"type": "boolean"
},
"com.amazonaws.ssm#ApproveAfterDays": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 0,
"max": 360
}
}
},
"com.amazonaws.ssm#AssociateOpsItemRelatedItem": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#AssociateOpsItemRelatedItemRequest"
},
"output": {
"target": "com.amazonaws.ssm#AssociateOpsItemRelatedItemResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsItemInvalidParameterException"
},
{
"target": "com.amazonaws.ssm#OpsItemLimitExceededException"
},
{
"target": "com.amazonaws.ssm#OpsItemNotFoundException"
},
{
"target": "com.amazonaws.ssm#OpsItemRelatedItemAlreadyExistsException"
}
],
"traits": {
"smithy.api#documentation": "<p>Associates a related resource to a Systems Manager OpsCenter OpsItem. For example, you can\n associate an Incident Manager incident or analysis with an OpsItem. Incident Manager is a\n capability of AWS Systems Manager.</p>"
}
},
"com.amazonaws.ssm#AssociateOpsItemRelatedItemRequest": {
"type": "structure",
"members": {
"OpsItemId": {
"target": "com.amazonaws.ssm#OpsItemId",
"traits": {
"smithy.api#documentation": "<p>The ID of the OpsItem to which you want to associate a resource as a related item.</p>",
"smithy.api#required": {}
}
},
"AssociationType": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationType",
"traits": {
"smithy.api#documentation": "<p>The type of association that you want to create between an OpsItem and a resource. OpsCenter\n supports <code>IsParentOf</code> and <code>RelatesTo</code> association types.</p>",
"smithy.api#required": {}
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationResourceType",
"traits": {
"smithy.api#documentation": "<p>The type of resource that you want to associate with an OpsItem. OpsCenter supports the\n following types:</p>\n <p>\n <code>AWS::SSMIncidents::IncidentRecord</code>: an Incident Manager incident. Incident\n Manager is a capability of AWS Systems Manager.</p>\n <p>\n <code>AWS::SSM::Document</code>: a Systems Manager (SSM) document.</p>",
"smithy.api#required": {}
}
},
"ResourceUri": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationResourceUri",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the AWS resource that you want to associate with the\n OpsItem.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#AssociateOpsItemRelatedItemResponse": {
"type": "structure",
"members": {
"AssociationId": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID.</p>"
}
}
}
},
"com.amazonaws.ssm#AssociatedInstances": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>You must disassociate a document from all instances before you can delete it.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#Association": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance.</p>"
}
},
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The ID created by the system when you create an association. An association is a binding\n between a document and a set of targets with a schedule.</p>"
}
},
"AssociationVersion": {
"target": "com.amazonaws.ssm#AssociationVersion",
"traits": {
"smithy.api#documentation": "<p>The association version.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the document used in the association.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The instances targeted by the request to create an association. </p>"
}
},
"LastExecutionDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date on which the association was last run.</p>"
}
},
"Overview": {
"target": "com.amazonaws.ssm#AssociationOverview",
"traits": {
"smithy.api#documentation": "<p>Information about the association.</p>"
}
},
"ScheduleExpression": {
"target": "com.amazonaws.ssm#ScheduleExpression",
"traits": {
"smithy.api#documentation": "<p>A cron expression that specifies a schedule when the association runs. The schedule runs in\n Coordinated Universal Time (UTC).</p>"
}
},
"AssociationName": {
"target": "com.amazonaws.ssm#AssociationName",
"traits": {
"smithy.api#documentation": "<p>The association name.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes an association of a Systems Manager document and an instance.</p>"
}
},
"com.amazonaws.ssm#AssociationAlreadyExists": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The specified association already exists.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AssociationComplianceSeverity": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "CRITICAL",
"name": "Critical"
},
{
"value": "HIGH",
"name": "High"
},
{
"value": "MEDIUM",
"name": "Medium"
},
{
"value": "LOW",
"name": "Low"
},
{
"value": "UNSPECIFIED",
"name": "Unspecified"
}
]
}
},
"com.amazonaws.ssm#AssociationDescription": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance.</p>"
}
},
"AssociationVersion": {
"target": "com.amazonaws.ssm#AssociationVersion",
"traits": {
"smithy.api#documentation": "<p>The association version.</p>"
}
},
"Date": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date when the association was made.</p>"
}
},
"LastUpdateAssociationDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date when the association was last updated.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#AssociationStatus",
"traits": {
"smithy.api#documentation": "<p>The association status.</p>"
}
},
"Overview": {
"target": "com.amazonaws.ssm#AssociationOverview",
"traits": {
"smithy.api#documentation": "<p>Information about the association.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version.</p>"
}
},
"AutomationTargetParameterName": {
"target": "com.amazonaws.ssm#AutomationTargetParameterName",
"traits": {
"smithy.api#documentation": "<p>Specify the target for the association. This target is required for associations that use an\n Automation document and target resources by using rate controls.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#Parameters",
"traits": {
"smithy.api#documentation": "<p>A description of the parameters for a document. </p>"
}
},
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The instances targeted by the request. </p>"
}
},
"ScheduleExpression": {
"target": "com.amazonaws.ssm#ScheduleExpression",
"traits": {
"smithy.api#documentation": "<p>A cron expression that specifies a schedule when the association runs.</p>"
}
},
"OutputLocation": {
"target": "com.amazonaws.ssm#InstanceAssociationOutputLocation",
"traits": {
"smithy.api#documentation": "<p>An S3 bucket where you want to store the output details of the request.</p>"
}
},
"LastExecutionDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date on which the association was last run.</p>"
}
},
"LastSuccessfulExecutionDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The last date on which the association was successfully run.</p>"
}
},
"AssociationName": {
"target": "com.amazonaws.ssm#AssociationName",
"traits": {
"smithy.api#documentation": "<p>The association name.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The number of errors that are allowed before the system stops sending requests to run the\n association on additional targets. You can specify either an absolute number of errors, for\n example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,\n the system stops sending requests when the fourth error is received. If you specify 0, then the\n system stops sending requests after the first error is returned. If you run an association on 50\n instances and set MaxError to 10%, then the system stops sending the request when the sixth error\n is received.</p>\n <p>Executions that are already running an association when MaxErrors is reached are allowed to\n complete, but some of these executions may fail as well. If you need to ensure that there won't\n be more than max-errors failed executions, set MaxConcurrency to 1 so that executions proceed one\n at a time.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of targets allowed to run the association at the same time. You can\n specify a number, for example 10, or a percentage of the target set, for example 10%. The default\n value is 100%, which means all targets run the association at the same time.</p>\n <p>If a new instance starts and attempts to run an association while Systems Manager is running\n MaxConcurrency associations, the association is allowed to run. During the next association\n interval, the new instance will process its association within the limit specified for\n MaxConcurrency.</p>"
}
},
"ComplianceSeverity": {
"target": "com.amazonaws.ssm#AssociationComplianceSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity level that is assigned to the association.</p>"
}
},
"SyncCompliance": {
"target": "com.amazonaws.ssm#AssociationSyncCompliance",
"traits": {
"smithy.api#documentation": "<p>The mode for generating association compliance. You can specify <code>AUTO</code> or\n <code>MANUAL</code>. In <code>AUTO</code> mode, the system uses the status of the association\n execution to determine the compliance status. If the association execution runs successfully,\n then the association is <code>COMPLIANT</code>. If the association execution doesn't run\n successfully, the association is <code>NON-COMPLIANT</code>.</p>\n <p>In <code>MANUAL</code> mode, you must specify the <code>AssociationId</code> as a parameter\n for the <a>PutComplianceItems</a> API action. In this case, compliance data is not\n managed by State Manager. It is managed by your direct call to the <a>PutComplianceItems</a> API action.</p>\n <p>By default, all associations use <code>AUTO</code> mode.</p>"
}
},
"ApplyOnlyAtCronInterval": {
"target": "com.amazonaws.ssm#ApplyOnlyAtCronInterval",
"traits": {
"smithy.api#documentation": "<p>By default, when you create a new associations, the system runs it immediately after it is\n created and then according to the schedule you specified. Specify this option if you don't want\n an association to run immediately after you create it. This parameter is not supported for rate\n expressions.</p>"
}
},
"CalendarNames": {
"target": "com.amazonaws.ssm#CalendarNameOrARNList",
"traits": {
"smithy.api#documentation": "<p>The names or Amazon Resource Names (ARNs) of the Systems Manager Change Calendar type \n documents your associations are gated under. The associations only run when that Change \n Calendar is open. For more information, see \n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar\">AWS Systems Manager Change Calendar</a>.</p>"
}
},
"TargetLocations": {
"target": "com.amazonaws.ssm#TargetLocations",
"traits": {
"smithy.api#documentation": "<p>The combination of AWS Regions and AWS accounts where you want to run the\n association.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes the parameters for a document.</p>"
}
},
"com.amazonaws.ssm#AssociationDescriptionList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AssociationDescription",
"traits": {
"smithy.api#xmlName": "AssociationDescription"
}
}
},
"com.amazonaws.ssm#AssociationDoesNotExist": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified association does not exist.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AssociationExecution": {
"type": "structure",
"members": {
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID.</p>"
}
},
"AssociationVersion": {
"target": "com.amazonaws.ssm#AssociationVersion",
"traits": {
"smithy.api#documentation": "<p>The association version.</p>"
}
},
"ExecutionId": {
"target": "com.amazonaws.ssm#AssociationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The execution ID for the association.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#StatusName",
"traits": {
"smithy.api#documentation": "<p>The status of the association execution.</p>"
}
},
"DetailedStatus": {
"target": "com.amazonaws.ssm#StatusName",
"traits": {
"smithy.api#documentation": "<p>Detailed status information about the execution.</p>"
}
},
"CreatedTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the execution started.</p>"
}
},
"LastExecutionDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date of the last execution.</p>"
}
},
"ResourceCountByStatus": {
"target": "com.amazonaws.ssm#ResourceCountByStatus",
"traits": {
"smithy.api#documentation": "<p>An aggregate status of the resources in the execution based on the status type.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Includes information about the specified association.</p>"
}
},
"com.amazonaws.ssm#AssociationExecutionDoesNotExist": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified execution ID does not exist. Verify the ID number and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AssociationExecutionFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#AssociationExecutionFilterKey",
"traits": {
"smithy.api#documentation": "<p>The key value used in the request.</p>",
"smithy.api#required": {}
}
},
"Value": {
"target": "com.amazonaws.ssm#AssociationExecutionFilterValue",
"traits": {
"smithy.api#documentation": "<p>The value specified for the key.</p>",
"smithy.api#required": {}
}
},
"Type": {
"target": "com.amazonaws.ssm#AssociationFilterOperatorType",
"traits": {
"smithy.api#documentation": "<p>The filter type specified in the request.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Filters used in the request.</p>"
}
},
"com.amazonaws.ssm#AssociationExecutionFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "ExecutionId",
"name": "ExecutionId"
},
{
"value": "Status",
"name": "Status"
},
{
"value": "CreatedTime",
"name": "CreatedTime"
}
]
}
},
"com.amazonaws.ssm#AssociationExecutionFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AssociationExecutionFilter",
"traits": {
"smithy.api#xmlName": "AssociationExecutionFilter"
}
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#AssociationExecutionFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#AssociationExecutionId": {
"type": "string",
"traits": {
"smithy.api#pattern": "[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"
}
},
"com.amazonaws.ssm#AssociationExecutionTarget": {
"type": "structure",
"members": {
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID.</p>"
}
},
"AssociationVersion": {
"target": "com.amazonaws.ssm#AssociationVersion",
"traits": {
"smithy.api#documentation": "<p>The association version.</p>"
}
},
"ExecutionId": {
"target": "com.amazonaws.ssm#AssociationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The execution ID.</p>"
}
},
"ResourceId": {
"target": "com.amazonaws.ssm#AssociationResourceId",
"traits": {
"smithy.api#documentation": "<p>The resource ID, for example, the instance ID where the association ran.</p>"
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#AssociationResourceType",
"traits": {
"smithy.api#documentation": "<p>The resource type, for example, instance.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#StatusName",
"traits": {
"smithy.api#documentation": "<p>The association execution status.</p>"
}
},
"DetailedStatus": {
"target": "com.amazonaws.ssm#StatusName",
"traits": {
"smithy.api#documentation": "<p>Detailed information about the execution status.</p>"
}
},
"LastExecutionDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date of the last execution.</p>"
}
},
"OutputSource": {
"target": "com.amazonaws.ssm#OutputSource",
"traits": {
"smithy.api#documentation": "<p>The location where the association details are saved.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Includes information about the specified association execution.</p>"
}
},
"com.amazonaws.ssm#AssociationExecutionTargetsFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#AssociationExecutionTargetsFilterKey",
"traits": {
"smithy.api#documentation": "<p>The key value used in the request.</p>",
"smithy.api#required": {}
}
},
"Value": {
"target": "com.amazonaws.ssm#AssociationExecutionTargetsFilterValue",
"traits": {
"smithy.api#documentation": "<p>The value specified for the key.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Filters for the association execution.</p>"
}
},
"com.amazonaws.ssm#AssociationExecutionTargetsFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Status",
"name": "Status"
},
{
"value": "ResourceId",
"name": "ResourceId"
},
{
"value": "ResourceType",
"name": "ResourceType"
}
]
}
},
"com.amazonaws.ssm#AssociationExecutionTargetsFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AssociationExecutionTargetsFilter",
"traits": {
"smithy.api#xmlName": "AssociationExecutionTargetsFilter"
}
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#AssociationExecutionTargetsFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#AssociationExecutionTargetsList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AssociationExecutionTarget",
"traits": {
"smithy.api#xmlName": "AssociationExecutionTarget"
}
}
},
"com.amazonaws.ssm#AssociationExecutionsList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AssociationExecution",
"traits": {
"smithy.api#xmlName": "AssociationExecution"
}
}
},
"com.amazonaws.ssm#AssociationFilter": {
"type": "structure",
"members": {
"key": {
"target": "com.amazonaws.ssm#AssociationFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>\n <note>\n <p>\n <code>InstanceId</code> has been deprecated.</p>\n </note>",
"smithy.api#required": {}
}
},
"value": {
"target": "com.amazonaws.ssm#AssociationFilterValue",
"traits": {
"smithy.api#documentation": "<p>The filter value.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes a filter.</p>"
}
},
"com.amazonaws.ssm#AssociationFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "InstanceId",
"name": "InstanceId"
},
{
"value": "Name",
"name": "Name"
},
{
"value": "AssociationId",
"name": "AssociationId"
},
{
"value": "AssociationStatusName",
"name": "Status"
},
{
"value": "LastExecutedBefore",
"name": "LastExecutedBefore"
},
{
"value": "LastExecutedAfter",
"name": "LastExecutedAfter"
},
{
"value": "AssociationName",
"name": "AssociationName"
},
{
"value": "ResourceGroupName",
"name": "ResourceGroupName"
}
]
}
},
"com.amazonaws.ssm#AssociationFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AssociationFilter",
"traits": {
"smithy.api#xmlName": "AssociationFilter"
}
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#AssociationFilterOperatorType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "EQUAL",
"name": "Equal"
},
{
"value": "LESS_THAN",
"name": "LessThan"
},
{
"value": "GREATER_THAN",
"name": "GreaterThan"
}
]
}
},
"com.amazonaws.ssm#AssociationFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#AssociationId": {
"type": "string",
"traits": {
"smithy.api#pattern": "[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"
}
},
"com.amazonaws.ssm#AssociationIdList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AssociationId"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#AssociationLimitExceeded": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>You can have at most 2,000 active associations.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AssociationList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Association",
"traits": {
"smithy.api#xmlName": "Association"
}
}
},
"com.amazonaws.ssm#AssociationName": {
"type": "string",
"traits": {
"smithy.api#pattern": "^[a-zA-Z0-9_\\-.]{3,128}$"
}
},
"com.amazonaws.ssm#AssociationOverview": {
"type": "structure",
"members": {
"Status": {
"target": "com.amazonaws.ssm#StatusName",
"traits": {
"smithy.api#documentation": "<p>The status of the association. Status can be: Pending, Success, or Failed.</p>"
}
},
"DetailedStatus": {
"target": "com.amazonaws.ssm#StatusName",
"traits": {
"smithy.api#documentation": "<p>A detailed status of the association.</p>"
}
},
"AssociationStatusAggregatedCount": {
"target": "com.amazonaws.ssm#AssociationStatusAggregatedCount",
"traits": {
"smithy.api#documentation": "<p>Returns the number of targets for the association status. For example, if you created an\n association with two instances, and one of them was successful, this would return the count of\n instances by status.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the association.</p>"
}
},
"com.amazonaws.ssm#AssociationResourceId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 100
}
}
},
"com.amazonaws.ssm#AssociationResourceType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#AssociationStatus": {
"type": "structure",
"members": {
"Date": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date when the status changed.</p>",
"smithy.api#required": {}
}
},
"Name": {
"target": "com.amazonaws.ssm#AssociationStatusName",
"traits": {
"smithy.api#documentation": "<p>The status.</p>",
"smithy.api#required": {}
}
},
"Message": {
"target": "com.amazonaws.ssm#StatusMessage",
"traits": {
"smithy.api#documentation": "<p>The reason for the status.</p>",
"smithy.api#required": {}
}
},
"AdditionalInfo": {
"target": "com.amazonaws.ssm#StatusAdditionalInfo",
"traits": {
"smithy.api#documentation": "<p>A user-defined string.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes an association status.</p>"
}
},
"com.amazonaws.ssm#AssociationStatusAggregatedCount": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#StatusName"
},
"value": {
"target": "com.amazonaws.ssm#InstanceCount"
}
},
"com.amazonaws.ssm#AssociationStatusName": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Pending",
"name": "Pending"
},
{
"value": "Success",
"name": "Success"
},
{
"value": "Failed",
"name": "Failed"
}
]
}
},
"com.amazonaws.ssm#AssociationSyncCompliance": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "AUTO",
"name": "Auto"
},
{
"value": "MANUAL",
"name": "Manual"
}
]
}
},
"com.amazonaws.ssm#AssociationVersion": {
"type": "string",
"traits": {
"smithy.api#pattern": "([$]LATEST)|([1-9][0-9]*)"
}
},
"com.amazonaws.ssm#AssociationVersionInfo": {
"type": "structure",
"members": {
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The ID created by the system when the association was created.</p>"
}
},
"AssociationVersion": {
"target": "com.amazonaws.ssm#AssociationVersion",
"traits": {
"smithy.api#documentation": "<p>The association version.</p>"
}
},
"CreatedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the association version was created.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name specified when the association was created.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of a Systems Manager document used when the association version was created.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#Parameters",
"traits": {
"smithy.api#documentation": "<p>Parameters specified when the association version was created.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets specified for the association when the association version was created. </p>"
}
},
"ScheduleExpression": {
"target": "com.amazonaws.ssm#ScheduleExpression",
"traits": {
"smithy.api#documentation": "<p>The cron or rate schedule specified for the association when the association version was\n created.</p>"
}
},
"OutputLocation": {
"target": "com.amazonaws.ssm#InstanceAssociationOutputLocation",
"traits": {
"smithy.api#documentation": "<p>The location in Amazon S3 specified for the association when the association version was\n created.</p>"
}
},
"AssociationName": {
"target": "com.amazonaws.ssm#AssociationName",
"traits": {
"smithy.api#documentation": "<p>The name specified for the association version when the association version was\n created.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The number of errors that are allowed before the system stops sending requests to run the\n association on additional targets. You can specify either an absolute number of errors, for\n example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,\n the system stops sending requests when the fourth error is received. If you specify 0, then the\n system stops sending requests after the first error is returned. If you run an association on 50\n instances and set MaxError to 10%, then the system stops sending the request when the sixth error\n is received.</p>\n <p>Executions that are already running an association when MaxErrors is reached are allowed to\n complete, but some of these executions may fail as well. If you need to ensure that there won't\n be more than max-errors failed executions, set MaxConcurrency to 1 so that executions proceed one\n at a time.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of targets allowed to run the association at the same time. You can\n specify a number, for example 10, or a percentage of the target set, for example 10%. The default\n value is 100%, which means all targets run the association at the same time.</p>\n <p>If a new instance starts and attempts to run an association while Systems Manager is running\n MaxConcurrency associations, the association is allowed to run. During the next association\n interval, the new instance will process its association within the limit specified for\n MaxConcurrency.</p>"
}
},
"ComplianceSeverity": {
"target": "com.amazonaws.ssm#AssociationComplianceSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity level that is assigned to the association.</p>"
}
},
"SyncCompliance": {
"target": "com.amazonaws.ssm#AssociationSyncCompliance",
"traits": {
"smithy.api#documentation": "<p>The mode for generating association compliance. You can specify <code>AUTO</code> or\n <code>MANUAL</code>. In <code>AUTO</code> mode, the system uses the status of the association\n execution to determine the compliance status. If the association execution runs successfully,\n then the association is <code>COMPLIANT</code>. If the association execution doesn't run\n successfully, the association is <code>NON-COMPLIANT</code>.</p>\n <p>In <code>MANUAL</code> mode, you must specify the <code>AssociationId</code> as a parameter\n for the <a>PutComplianceItems</a> API action. In this case, compliance data is not\n managed by State Manager. It is managed by your direct call to the <a>PutComplianceItems</a> API action.</p>\n <p>By default, all associations use <code>AUTO</code> mode.</p>"
}
},
"ApplyOnlyAtCronInterval": {
"target": "com.amazonaws.ssm#ApplyOnlyAtCronInterval",
"traits": {
"smithy.api#documentation": "<p>By default, when you create a new associations, the system runs it immediately after it is\n created and then according to the schedule you specified. Specify this option if you don't want\n an association to run immediately after you create it. This parameter is not supported for rate\n expressions.</p>"
}
},
"CalendarNames": {
"target": "com.amazonaws.ssm#CalendarNameOrARNList",
"traits": {
"smithy.api#documentation": "<p>The names or Amazon Resource Names (ARNs) of the Systems Manager Change Calendar type \n documents your associations are gated under. The associations for this version only run when \n that Change Calendar is open. For more information, see \n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar\">AWS Systems Manager Change Calendar</a>.</p>"
}
},
"TargetLocations": {
"target": "com.amazonaws.ssm#TargetLocations",
"traits": {
"smithy.api#documentation": "<p>The combination of AWS Regions and AWS accounts where you wanted to run the association when\n this association version was created.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the association version.</p>"
}
},
"com.amazonaws.ssm#AssociationVersionLimitExceeded": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You have reached the maximum number versions allowed for an association. Each association\n has a limit of 1,000 versions. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AssociationVersionList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AssociationVersionInfo"
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#AttachmentContent": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#AttachmentName",
"traits": {
"smithy.api#documentation": "<p>The name of an attachment.</p>"
}
},
"Size": {
"target": "com.amazonaws.ssm#ContentLength",
"traits": {
"smithy.api#documentation": "<p>The size of an attachment in bytes.</p>"
}
},
"Hash": {
"target": "com.amazonaws.ssm#AttachmentHash",
"traits": {
"smithy.api#documentation": "<p>The cryptographic hash value of the document content.</p>"
}
},
"HashType": {
"target": "com.amazonaws.ssm#AttachmentHashType",
"traits": {
"smithy.api#documentation": "<p>The hash algorithm used to calculate the hash value.</p>"
}
},
"Url": {
"target": "com.amazonaws.ssm#AttachmentUrl",
"traits": {
"smithy.api#documentation": "<p>The URL location of the attachment content.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A structure that includes attributes that describe a document attachment.</p>"
}
},
"com.amazonaws.ssm#AttachmentContentList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AttachmentContent",
"traits": {
"smithy.api#xmlName": "AttachmentContent"
}
}
},
"com.amazonaws.ssm#AttachmentHash": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 256
}
}
},
"com.amazonaws.ssm#AttachmentHashType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Sha256",
"name": "SHA256"
}
]
}
},
"com.amazonaws.ssm#AttachmentIdentifier": {
"type": "string",
"traits": {
"smithy.api#pattern": "^[a-zA-Z0-9_\\-.]{3,128}$"
}
},
"com.amazonaws.ssm#AttachmentInformation": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#AttachmentName",
"traits": {
"smithy.api#documentation": "<p>The name of the attachment.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An attribute of an attachment, such as the attachment name.</p>"
}
},
"com.amazonaws.ssm#AttachmentInformationList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AttachmentInformation",
"traits": {
"smithy.api#xmlName": "AttachmentInformation"
}
}
},
"com.amazonaws.ssm#AttachmentName": {
"type": "string",
"traits": {
"smithy.api#pattern": "^[a-zA-Z0-9_\\-.]{3,128}$"
}
},
"com.amazonaws.ssm#AttachmentUrl": {
"type": "string"
},
"com.amazonaws.ssm#AttachmentsSource": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#AttachmentsSourceKey",
"traits": {
"smithy.api#documentation": "<p>The key of a key-value pair that identifies the location of an attachment to a\n document.</p>"
}
},
"Values": {
"target": "com.amazonaws.ssm#AttachmentsSourceValues",
"traits": {
"smithy.api#documentation": "<p>The value of a key-value pair that identifies the location of an attachment to a document.\n The format for <b>Value</b> depends on the type of key you\n specify.</p>\n <ul>\n <li>\n <p>For the key <i>SourceUrl</i>, the value is an S3 bucket location. For\n example:</p>\n <p>\n <code>\"Values\": [ \"s3://doc-example-bucket/my-folder\" ]</code>\n </p>\n </li>\n <li>\n <p>For the key <i>S3FileUrl</i>, the value is a file in an S3 bucket. For\n example:</p>\n <p>\n <code>\"Values\": [ \"s3://doc-example-bucket/my-folder/my-file.py\" ]</code>\n </p>\n </li>\n <li>\n <p>For the key <i>AttachmentReference</i>, the value is constructed from the\n name of another SSM document in your account, a version number of that document, and a file\n attached to that document version that you want to reuse. For example:</p>\n <p>\n <code>\"Values\": [ \"MyOtherDocument/3/my-other-file.py\" ]</code>\n </p>\n <p>However, if the SSM document is shared with you from another account, the full SSM\n document ARN must be specified instead of the document name only. For example:</p>\n <p>\n <code>\"Values\": [\n \"arn:aws:ssm:us-east-2:111122223333:document/OtherAccountDocument/3/their-file.py\"\n ]</code>\n </p>\n </li>\n </ul>"
}
},
"Name": {
"target": "com.amazonaws.ssm#AttachmentIdentifier",
"traits": {
"smithy.api#documentation": "<p>The name of the document attachment file.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Identifying information about a document attachment, including the file name and a key-value\n pair that identifies the location of an attachment to a document.</p>"
}
},
"com.amazonaws.ssm#AttachmentsSourceKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "SourceUrl",
"name": "SourceUrl"
},
{
"value": "S3FileUrl",
"name": "S3FileUrl"
},
{
"value": "AttachmentReference",
"name": "AttachmentReference"
}
]
}
},
"com.amazonaws.ssm#AttachmentsSourceList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AttachmentsSource"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 20
}
}
},
"com.amazonaws.ssm#AttachmentsSourceValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.ssm#AttachmentsSourceValues": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AttachmentsSourceValue"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1
}
}
},
"com.amazonaws.ssm#AttributeName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#AttributeValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 4096
}
}
},
"com.amazonaws.ssm#AutomationActionName": {
"type": "string",
"traits": {
"smithy.api#pattern": "^aws:[a-zA-Z]{3,25}$"
}
},
"com.amazonaws.ssm#AutomationDefinitionNotApprovedException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Indicates that the Change Manager change template used in the change request was rejected or is\n still in a pending state.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AutomationDefinitionNotFoundException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>An Automation document with the specified name could not be found.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AutomationDefinitionVersionNotFoundException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>An Automation document with the specified name and version could not be found.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AutomationExecution": {
"type": "structure",
"members": {
"AutomationExecutionId": {
"target": "com.amazonaws.ssm#AutomationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The execution ID.</p>"
}
},
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the Automation document used during the execution.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the document to use during execution.</p>"
}
},
"ExecutionStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the execution started.</p>"
}
},
"ExecutionEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the execution finished.</p>"
}
},
"AutomationExecutionStatus": {
"target": "com.amazonaws.ssm#AutomationExecutionStatus",
"traits": {
"smithy.api#documentation": "<p>The execution status of the Automation.</p>"
}
},
"StepExecutions": {
"target": "com.amazonaws.ssm#StepExecutionList",
"traits": {
"smithy.api#documentation": "<p>A list of details about the current state of all steps that comprise an execution. An\n Automation document contains a list of steps that are run in order.</p>"
}
},
"StepExecutionsTruncated": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#documentation": "<p>A boolean value that indicates if the response contains the full list of the Automation step\n executions. If true, use the DescribeAutomationStepExecutions API action to get the full list of\n step executions.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>The key-value map of execution parameters, which were supplied when calling\n StartAutomationExecution.</p>"
}
},
"Outputs": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>The list of execution outputs as defined in the automation document.</p>"
}
},
"FailureMessage": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>A message describing why an execution has failed, if the status is set to Failed.</p>"
}
},
"Mode": {
"target": "com.amazonaws.ssm#ExecutionMode",
"traits": {
"smithy.api#documentation": "<p>The automation execution mode.</p>"
}
},
"ParentAutomationExecutionId": {
"target": "com.amazonaws.ssm#AutomationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The AutomationExecutionId of the parent automation.</p>"
}
},
"ExecutedBy": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the user who ran the automation.</p>"
}
},
"CurrentStepName": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The name of the step that is currently running.</p>"
}
},
"CurrentAction": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The action of the step that is currently running.</p>"
}
},
"TargetParameterName": {
"target": "com.amazonaws.ssm#AutomationParameterKey",
"traits": {
"smithy.api#documentation": "<p>The parameter name.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The specified targets.</p>"
}
},
"TargetMaps": {
"target": "com.amazonaws.ssm#TargetMaps",
"traits": {
"smithy.api#documentation": "<p>The specified key-value mapping of document parameters to target resources.</p>"
}
},
"ResolvedTargets": {
"target": "com.amazonaws.ssm#ResolvedTargets",
"traits": {
"smithy.api#documentation": "<p>A list of resolved targets in the rate control execution.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The MaxConcurrency value specified by the user when the execution started.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The MaxErrors value specified by the user when the execution started.</p>"
}
},
"Target": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The target of the execution.</p>"
}
},
"TargetLocations": {
"target": "com.amazonaws.ssm#TargetLocations",
"traits": {
"smithy.api#documentation": "<p>The combination of AWS Regions and/or AWS accounts where you want to run the\n Automation.</p>"
}
},
"ProgressCounters": {
"target": "com.amazonaws.ssm#ProgressCounters",
"traits": {
"smithy.api#documentation": "<p>An aggregate of step execution statuses displayed in the AWS Console for a multi-Region and\n multi-account Automation execution.</p>"
}
},
"AutomationSubtype": {
"target": "com.amazonaws.ssm#AutomationSubtype",
"traits": {
"smithy.api#documentation": "<p>The subtype of the Automation operation. Currently, the only supported value is\n <code>ChangeRequest</code>.</p>"
}
},
"ScheduledTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the Automation operation is scheduled to start.</p>"
}
},
"Runbooks": {
"target": "com.amazonaws.ssm#Runbooks",
"traits": {
"smithy.api#documentation": "<p>Information about the Automation runbooks (Automation documents) that are run as part of a\n runbook workflow.</p>\n <note>\n <p>The Automation runbooks specified for the runbook workflow can't run until all required\n approvals for the change request have been received.</p>\n </note>"
}
},
"OpsItemId": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ID of an OpsItem that is created to represent a Change Manager change request.</p>"
}
},
"AssociationId": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ID of a State Manager association used in the Automation operation.</p>"
}
},
"ChangeRequestName": {
"target": "com.amazonaws.ssm#ChangeRequestName",
"traits": {
"smithy.api#documentation": "<p>The name of the Change Manager change request.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Detailed information about the current state of an individual Automation execution.</p>"
}
},
"com.amazonaws.ssm#AutomationExecutionFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#AutomationExecutionFilterKey",
"traits": {
"smithy.api#documentation": "<p>One or more keys to limit the results.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#AutomationExecutionFilterValueList",
"traits": {
"smithy.api#documentation": "<p>The values used to limit the execution information associated with the filter's key.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>A filter used to match specific automation executions. This is used to limit the scope of\n Automation execution information returned.</p>"
}
},
"com.amazonaws.ssm#AutomationExecutionFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "DocumentNamePrefix",
"name": "DOCUMENT_NAME_PREFIX"
},
{
"value": "ExecutionStatus",
"name": "EXECUTION_STATUS"
},
{
"value": "ExecutionId",
"name": "EXECUTION_ID"
},
{
"value": "ParentExecutionId",
"name": "PARENT_EXECUTION_ID"
},
{
"value": "CurrentAction",
"name": "CURRENT_ACTION"
},
{
"value": "StartTimeBefore",
"name": "START_TIME_BEFORE"
},
{
"value": "StartTimeAfter",
"name": "START_TIME_AFTER"
},
{
"value": "AutomationType",
"name": "AUTOMATION_TYPE"
},
{
"value": "TagKey",
"name": "TAG_KEY"
},
{
"value": "TargetResourceGroup",
"name": "TARGET_RESOURCE_GROUP"
},
{
"value": "AutomationSubtype",
"name": "AUTOMATION_SUBTYPE"
},
{
"value": "OpsItemId",
"name": "OPS_ITEM_ID"
}
]
}
},
"com.amazonaws.ssm#AutomationExecutionFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AutomationExecutionFilter"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#AutomationExecutionFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 150
}
}
},
"com.amazonaws.ssm#AutomationExecutionFilterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AutomationExecutionFilterValue"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#AutomationExecutionId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 36,
"max": 36
}
}
},
"com.amazonaws.ssm#AutomationExecutionLimitExceededException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The number of simultaneously running Automation executions exceeded the allowable\n limit.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AutomationExecutionMetadata": {
"type": "structure",
"members": {
"AutomationExecutionId": {
"target": "com.amazonaws.ssm#AutomationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The execution ID.</p>"
}
},
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the Automation document used during execution.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version used during the execution.</p>"
}
},
"AutomationExecutionStatus": {
"target": "com.amazonaws.ssm#AutomationExecutionStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the execution.</p>"
}
},
"ExecutionStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the execution started.</p>"
}
},
"ExecutionEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the execution finished. This is not populated if the execution is still in\n progress.</p>"
}
},
"ExecutedBy": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The IAM role ARN of the user who ran the Automation.</p>"
}
},
"LogFile": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>An S3 bucket where execution information is stored.</p>"
}
},
"Outputs": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>The list of execution outputs as defined in the Automation document.</p>"
}
},
"Mode": {
"target": "com.amazonaws.ssm#ExecutionMode",
"traits": {
"smithy.api#documentation": "<p>The Automation execution mode.</p>"
}
},
"ParentAutomationExecutionId": {
"target": "com.amazonaws.ssm#AutomationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ExecutionId of the parent Automation.</p>"
}
},
"CurrentStepName": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The name of the step that is currently running.</p>"
}
},
"CurrentAction": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The action of the step that is currently running.</p>"
}
},
"FailureMessage": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The list of execution outputs as defined in the Automation document.</p>"
}
},
"TargetParameterName": {
"target": "com.amazonaws.ssm#AutomationParameterKey",
"traits": {
"smithy.api#documentation": "<p>The list of execution outputs as defined in the Automation document.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets defined by the user when starting the Automation.</p>"
}
},
"TargetMaps": {
"target": "com.amazonaws.ssm#TargetMaps",
"traits": {
"smithy.api#documentation": "<p>The specified key-value mapping of document parameters to target resources.</p>"
}
},
"ResolvedTargets": {
"target": "com.amazonaws.ssm#ResolvedTargets",
"traits": {
"smithy.api#documentation": "<p>A list of targets that resolved during the execution.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The MaxConcurrency value specified by the user when starting the Automation.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The MaxErrors value specified by the user when starting the Automation.</p>"
}
},
"Target": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The list of execution outputs as defined in the Automation document.</p>"
}
},
"AutomationType": {
"target": "com.amazonaws.ssm#AutomationType",
"traits": {
"smithy.api#documentation": "<p>Use this filter with <a>DescribeAutomationExecutions</a>. Specify either Local or\n CrossAccount. CrossAccount is an Automation that runs in multiple AWS Regions and accounts. For\n more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-automation-multiple-accounts-and-regions.html\">Running Automation workflows in multiple AWS Regions and accounts</a> in the\n <i>AWS Systems Manager User Guide</i>. </p>"
}
},
"AutomationSubtype": {
"target": "com.amazonaws.ssm#AutomationSubtype",
"traits": {
"smithy.api#documentation": "<p>The subtype of the Automation operation. Currently, the only supported value is\n <code>ChangeRequest</code>.</p>"
}
},
"ScheduledTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the Automation operation is scheduled to start.</p>"
}
},
"Runbooks": {
"target": "com.amazonaws.ssm#Runbooks",
"traits": {
"smithy.api#documentation": "<p>Information about the Automation runbooks (Automation documents) that are run during a\n runbook workflow in Change Manager.</p>\n <note>\n <p>The Automation runbooks specified for the runbook workflow can't run until all required\n approvals for the change request have been received.</p>\n </note>"
}
},
"OpsItemId": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ID of an OpsItem that is created to represent a Change Manager change request.</p>"
}
},
"AssociationId": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ID of a State Manager association used in the Automation operation.</p>"
}
},
"ChangeRequestName": {
"target": "com.amazonaws.ssm#ChangeRequestName",
"traits": {
"smithy.api#documentation": "<p>The name of the Change Manager change request.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Details about a specific Automation execution.</p>"
}
},
"com.amazonaws.ssm#AutomationExecutionMetadataList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AutomationExecutionMetadata"
}
},
"com.amazonaws.ssm#AutomationExecutionNotFoundException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>There is no automation execution information for the requested automation execution\n ID.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AutomationExecutionStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Pending",
"name": "PENDING"
},
{
"value": "InProgress",
"name": "INPROGRESS"
},
{
"value": "Waiting",
"name": "WAITING"
},
{
"value": "Success",
"name": "SUCCESS"
},
{
"value": "TimedOut",
"name": "TIMEDOUT"
},
{
"value": "Cancelling",
"name": "CANCELLING"
},
{
"value": "Cancelled",
"name": "CANCELLED"
},
{
"value": "Failed",
"name": "FAILED"
},
{
"value": "PendingApproval",
"name": "PENDING_APPROVAL"
},
{
"value": "Approved",
"name": "APPROVED"
},
{
"value": "Rejected",
"name": "REJECTED"
},
{
"value": "Scheduled",
"name": "SCHEDULED"
},
{
"value": "RunbookInProgress",
"name": "RUNBOOK_INPROGRESS"
},
{
"value": "PendingChangeCalendarOverride",
"name": "PENDING_CHANGE_CALENDAR_OVERRIDE"
},
{
"value": "ChangeCalendarOverrideApproved",
"name": "CHANGE_CALENDAR_OVERRIDE_APPROVED"
},
{
"value": "ChangeCalendarOverrideRejected",
"name": "CHANGE_CALENDAR_OVERRIDE_REJECTED"
},
{
"value": "CompletedWithSuccess",
"name": "COMPLETED_WITH_SUCCESS"
},
{
"value": "CompletedWithFailure",
"name": "COMPLETED_WITH_FAILURE"
}
]
}
},
"com.amazonaws.ssm#AutomationParameterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#AutomationParameterMap": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#AutomationParameterKey"
},
"value": {
"target": "com.amazonaws.ssm#AutomationParameterValueList"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 200
}
}
},
"com.amazonaws.ssm#AutomationParameterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 512
}
}
},
"com.amazonaws.ssm#AutomationParameterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#AutomationParameterValue"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 50
}
}
},
"com.amazonaws.ssm#AutomationStepNotFoundException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified step name and execution ID don't exist. Verify the information and try\n again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#AutomationSubtype": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "ChangeRequest",
"name": "ChangeRequest"
}
]
}
},
"com.amazonaws.ssm#AutomationTargetParameterName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#AutomationType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "CrossAccount",
"name": "CrossAccount"
},
{
"value": "Local",
"name": "Local"
}
]
}
},
"com.amazonaws.ssm#BaselineDescription": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.ssm#BaselineId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 20,
"max": 128
},
"smithy.api#pattern": "^[a-zA-Z0-9_\\-:/]{20,128}$"
}
},
"com.amazonaws.ssm#BaselineName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 3,
"max": 128
},
"smithy.api#pattern": "^[a-zA-Z0-9_\\-.]{3,128}$"
}
},
"com.amazonaws.ssm#BaselineOverride": {
"type": "structure",
"members": {
"OperatingSystem": {
"target": "com.amazonaws.ssm#OperatingSystem",
"traits": {
"smithy.api#documentation": "<p>The operating system rule used by the patch baseline override.</p>"
}
},
"GlobalFilters": {
"target": "com.amazonaws.ssm#PatchFilterGroup"
},
"ApprovalRules": {
"target": "com.amazonaws.ssm#PatchRuleGroup"
},
"ApprovedPatches": {
"target": "com.amazonaws.ssm#PatchIdList",
"traits": {
"smithy.api#documentation": "<p>A list of explicitly approved patches for the baseline.</p>\n <p>For information about accepted formats for lists of approved patches and rejected patches,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-approved-rejected-package-name-formats.html\">About\n package name formats for approved and rejected patch lists</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"ApprovedPatchesComplianceLevel": {
"target": "com.amazonaws.ssm#PatchComplianceLevel",
"traits": {
"smithy.api#documentation": "<p>Defines the compliance level for approved patches. When an approved patch is reported as\n missing, this value describes the severity of the compliance violation.</p>"
}
},
"RejectedPatches": {
"target": "com.amazonaws.ssm#PatchIdList",
"traits": {
"smithy.api#documentation": "<p>A list of explicitly rejected patches for the baseline.</p>\n <p>For information about accepted formats for lists of approved patches and rejected patches,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-approved-rejected-package-name-formats.html\">About\n package name formats for approved and rejected patch lists</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"RejectedPatchesAction": {
"target": "com.amazonaws.ssm#PatchAction",
"traits": {
"smithy.api#documentation": "<p>The action for Patch Manager to take on patches included in the RejectedPackages list. A\n patch can be allowed only if it is a dependency of another package, or blocked entirely along\n with packages that include it as a dependency.</p>"
}
},
"ApprovedPatchesEnableNonSecurity": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#documentation": "<p>Indicates whether the list of approved patches includes non-security updates that should be\n applied to the instances. The default value is 'false'. Applies to Linux instances only.</p>"
}
},
"Sources": {
"target": "com.amazonaws.ssm#PatchSourceList",
"traits": {
"smithy.api#documentation": "<p>Information about the patches to use to update the instances, including target operating\n systems and source repositories. Applies to Linux instances only.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Defines the basic information about a patch baseline override.</p>"
}
},
"com.amazonaws.ssm#BatchErrorMessage": {
"type": "string"
},
"com.amazonaws.ssm#Boolean": {
"type": "boolean"
},
"com.amazonaws.ssm#CalendarNameOrARN": {
"type": "string"
},
"com.amazonaws.ssm#CalendarNameOrARNList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#CalendarNameOrARN"
}
},
"com.amazonaws.ssm#CalendarState": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "OPEN",
"name": "OPEN"
},
{
"value": "CLOSED",
"name": "CLOSED"
}
]
}
},
"com.amazonaws.ssm#CancelCommand": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CancelCommandRequest"
},
"output": {
"target": "com.amazonaws.ssm#CancelCommandResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DuplicateInstanceId"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidCommandId"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
}
],
"traits": {
"smithy.api#documentation": "<p>Attempts to cancel the command specified by the Command ID. There is no guarantee that the\n command will be terminated and the underlying process stopped.</p>"
}
},
"com.amazonaws.ssm#CancelCommandRequest": {
"type": "structure",
"members": {
"CommandId": {
"target": "com.amazonaws.ssm#CommandId",
"traits": {
"smithy.api#documentation": "<p>The ID of the command you want to cancel.</p>",
"smithy.api#required": {}
}
},
"InstanceIds": {
"target": "com.amazonaws.ssm#InstanceIdList",
"traits": {
"smithy.api#documentation": "<p>(Optional) A list of instance IDs on which you want to cancel the command. If not provided,\n the command is canceled on every instance on which it was requested.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p></p>"
}
},
"com.amazonaws.ssm#CancelCommandResult": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>Whether or not the command was successfully canceled. There is no guarantee that a request\n can be canceled.</p>"
}
},
"com.amazonaws.ssm#CancelMaintenanceWindowExecution": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CancelMaintenanceWindowExecutionRequest"
},
"output": {
"target": "com.amazonaws.ssm#CancelMaintenanceWindowExecutionResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Stops a maintenance window execution that is already in progress and cancels any tasks in\n the window that have not already starting running. (Tasks already in progress will continue to\n completion.)</p>"
}
},
"com.amazonaws.ssm#CancelMaintenanceWindowExecutionRequest": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution to stop.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#CancelMaintenanceWindowExecutionResult": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution that has been stopped.</p>"
}
}
}
},
"com.amazonaws.ssm#ChangeDetailsValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 32768
}
}
},
"com.amazonaws.ssm#ChangeRequestName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.ssm#ClientToken": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#CloudWatchLogGroupName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 512
}
}
},
"com.amazonaws.ssm#CloudWatchOutputConfig": {
"type": "structure",
"members": {
"CloudWatchLogGroupName": {
"target": "com.amazonaws.ssm#CloudWatchLogGroupName",
"traits": {
"smithy.api#documentation": "<p>The name of the CloudWatch log group where you want to send command output. If you don't\n specify a group name, Systems Manager automatically creates a log group for you. The log group uses the\n following naming format: aws/ssm/<i>SystemsManagerDocumentName</i>.</p>"
}
},
"CloudWatchOutputEnabled": {
"target": "com.amazonaws.ssm#CloudWatchOutputEnabled",
"traits": {
"smithy.api#documentation": "<p>Enables Systems Manager to send command output to CloudWatch Logs.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Configuration options for sending command output to CloudWatch Logs.</p>"
}
},
"com.amazonaws.ssm#CloudWatchOutputEnabled": {
"type": "boolean"
},
"com.amazonaws.ssm#Command": {
"type": "structure",
"members": {
"CommandId": {
"target": "com.amazonaws.ssm#CommandId",
"traits": {
"smithy.api#documentation": "<p>A unique identifier for this command.</p>"
}
},
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the document requested for execution.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The SSM document version.</p>"
}
},
"Comment": {
"target": "com.amazonaws.ssm#Comment",
"traits": {
"smithy.api#documentation": "<p>User-specified information about the command, such as a brief description of what the\n command should do.</p>"
}
},
"ExpiresAfter": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>If this time is reached and the command has not already started running, it will not run.\n Calculated based on the ExpiresAfter user input provided as part of the SendCommand API.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#Parameters",
"traits": {
"smithy.api#documentation": "<p>The parameter values to be inserted in the document when running the command.</p>"
}
},
"InstanceIds": {
"target": "com.amazonaws.ssm#InstanceIdList",
"traits": {
"smithy.api#documentation": "<p>The instance IDs against which this command was requested.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>An array of search criteria that targets instances using a Key,Value combination that you\n specify. Targets is required if you don't provide one or more instance IDs in the call.</p>"
}
},
"RequestedDateTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the command was requested.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#CommandStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the command.</p>"
}
},
"StatusDetails": {
"target": "com.amazonaws.ssm#StatusDetails",
"traits": {
"smithy.api#documentation": "<p>A detailed status of the command execution. StatusDetails includes more information than\n Status because it includes states resulting from error and concurrency control parameters.\n StatusDetails can show different results than Status. For more information about these statuses,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html\">Understanding command statuses</a> in the <i>AWS Systems Manager User Guide</i>.\n StatusDetails can be one of the following values:</p>\n <ul>\n <li>\n <p>Pending: The command has not been sent to any instances.</p>\n </li>\n <li>\n <p>In Progress: The command has been sent to at least one instance but has not reached a\n final state on all instances.</p>\n </li>\n <li>\n <p>Success: The command successfully ran on all invocations. This is a terminal state.</p>\n </li>\n <li>\n <p>Delivery Timed Out: The value of MaxErrors or more command invocations shows a status of\n Delivery Timed Out. This is a terminal state.</p>\n </li>\n <li>\n <p>Execution Timed Out: The value of MaxErrors or more command invocations shows a status of\n Execution Timed Out. This is a terminal state.</p>\n </li>\n <li>\n <p>Failed: The value of MaxErrors or more command invocations shows a status of Failed. This\n is a terminal state.</p>\n </li>\n <li>\n <p>Incomplete: The command was attempted on all instances and one or more invocations does\n not have a value of Success but not enough invocations failed for the status to be Failed. This\n is a terminal state.</p>\n </li>\n <li>\n <p>Canceled: The command was terminated before it was completed. This is a terminal\n state.</p>\n </li>\n <li>\n <p>Rate Exceeded: The number of instances targeted by the command exceeded the account limit\n for pending invocations. The system has canceled the command before running it on any instance.\n This is a terminal state.</p>\n </li>\n </ul>"
}
},
"OutputS3Region": {
"target": "com.amazonaws.ssm#S3Region",
"traits": {
"smithy.api#documentation": "<p>(Deprecated) You can no longer specify this parameter. The system ignores it. Instead, Systems Manager\n automatically determines the Region of the S3 bucket.</p>"
}
},
"OutputS3BucketName": {
"target": "com.amazonaws.ssm#S3BucketName",
"traits": {
"smithy.api#documentation": "<p>The S3 bucket where the responses to the command executions should be stored. This was\n requested when issuing the command.</p>"
}
},
"OutputS3KeyPrefix": {
"target": "com.amazonaws.ssm#S3KeyPrefix",
"traits": {
"smithy.api#documentation": "<p>The S3 directory path inside the bucket where the responses to the command executions should\n be stored. This was requested when issuing the command.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of instances that are allowed to run the command at the same time. You\n can specify a number of instances, such as 10, or a percentage of instances, such as 10%. The\n default value is 50. For more information about how to use MaxConcurrency, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/run-command.html\">Running commands\n using Systems Manager Run Command</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The maximum number of errors allowed before the system stops sending the command to\n additional targets. You can specify a number of errors, such as 10, or a percentage or errors,\n such as 10%. The default value is 0. For more information about how to use MaxErrors, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/run-command.html\">Running commands\n using Systems Manager Run Command</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"TargetCount": {
"target": "com.amazonaws.ssm#TargetCount",
"traits": {
"smithy.api#documentation": "<p>The number of targets for the command.</p>"
}
},
"CompletedCount": {
"target": "com.amazonaws.ssm#CompletedCount",
"traits": {
"smithy.api#documentation": "<p>The number of targets for which the command invocation reached a terminal state. Terminal\n states include the following: Success, Failed, Execution Timed Out, Delivery Timed Out, Canceled,\n Terminated, or Undeliverable.</p>"
}
},
"ErrorCount": {
"target": "com.amazonaws.ssm#ErrorCount",
"traits": {
"smithy.api#documentation": "<p>The number of targets for which the status is Failed or Execution Timed Out.</p>"
}
},
"DeliveryTimedOutCount": {
"target": "com.amazonaws.ssm#DeliveryTimedOutCount",
"traits": {
"smithy.api#documentation": "<p>The number of targets for which the status is Delivery Timed Out.</p>"
}
},
"ServiceRole": {
"target": "com.amazonaws.ssm#ServiceRole",
"traits": {
"smithy.api#documentation": "<p>The IAM service role that Run Command uses to act on your behalf when sending notifications\n about command status changes. </p>"
}
},
"NotificationConfig": {
"target": "com.amazonaws.ssm#NotificationConfig",
"traits": {
"smithy.api#documentation": "<p>Configurations for sending notifications about command status changes. </p>"
}
},
"CloudWatchOutputConfig": {
"target": "com.amazonaws.ssm#CloudWatchOutputConfig",
"traits": {
"smithy.api#documentation": "<p>CloudWatch Logs information where you want Systems Manager to send the command output.</p>"
}
},
"TimeoutSeconds": {
"target": "com.amazonaws.ssm#TimeoutSeconds",
"traits": {
"smithy.api#documentation": "<p>The <code>TimeoutSeconds</code> value specified for a command.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes a command request.</p>"
}
},
"com.amazonaws.ssm#CommandFilter": {
"type": "structure",
"members": {
"key": {
"target": "com.amazonaws.ssm#CommandFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>",
"smithy.api#required": {}
}
},
"value": {
"target": "com.amazonaws.ssm#CommandFilterValue",
"traits": {
"smithy.api#documentation": "<p>The filter value. Valid values for each filter key are as follows:</p>\n <ul>\n <li>\n <p>\n <b>InvokedAfter</b>: Specify a timestamp to limit your results.\n For example, specify <code>2018-07-07T00:00:00Z</code> to see a list of command executions\n occurring July 7, 2018, and later.</p>\n </li>\n <li>\n <p>\n <b>InvokedBefore</b>: Specify a timestamp to limit your results.\n For example, specify <code>2018-07-07T00:00:00Z</code> to see a list of command executions from\n before July 7, 2018.</p>\n </li>\n <li>\n <p>\n <b>Status</b>: Specify a valid command status to see a list of\n all command executions with that status. Status values you can specify include:</p>\n <ul>\n <li>\n <p>\n <code>Pending</code>\n </p>\n </li>\n <li>\n <p>\n <code>InProgress</code>\n </p>\n </li>\n <li>\n <p>\n <code>Success</code>\n </p>\n </li>\n <li>\n <p>\n <code>Cancelled</code>\n </p>\n </li>\n <li>\n <p>\n <code>Failed</code>\n </p>\n </li>\n <li>\n <p>\n <code>TimedOut</code>\n </p>\n </li>\n <li>\n <p>\n <code>Cancelling</code>\n </p>\n </li>\n </ul>\n </li>\n <li>\n <p>\n <b>DocumentName</b>: Specify name of the SSM document for which\n you want to see command execution results. For example, specify\n <code>AWS-RunPatchBaseline</code> to see command executions that used this SSM document to\n perform security patching operations on instances. </p>\n </li>\n <li>\n <p>\n <b>ExecutionStage</b>: Specify one of the following\n values:</p>\n <ul>\n <li>\n <p>\n <code>Executing</code>: Returns a list of command executions that are currently still\n running.</p>\n </li>\n <li>\n <p>\n <code>Complete</code>: Returns a list of command executions that have already completed.\n </p>\n </li>\n </ul>\n </li>\n </ul>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes a command filter.</p>\n <note>\n <p>An instance ID can't be specified when a command status is <code>Pending</code> because the\n command hasn't run on the instance yet.</p>\n </note>"
}
},
"com.amazonaws.ssm#CommandFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "InvokedAfter",
"name": "INVOKED_AFTER"
},
{
"value": "InvokedBefore",
"name": "INVOKED_BEFORE"
},
{
"value": "Status",
"name": "STATUS"
},
{
"value": "ExecutionStage",
"name": "EXECUTION_STAGE"
},
{
"value": "DocumentName",
"name": "DOCUMENT_NAME"
}
]
}
},
"com.amazonaws.ssm#CommandFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#CommandFilter"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 5
}
}
},
"com.amazonaws.ssm#CommandFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
}
}
},
"com.amazonaws.ssm#CommandId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 36,
"max": 36
}
}
},
"com.amazonaws.ssm#CommandInvocation": {
"type": "structure",
"members": {
"CommandId": {
"target": "com.amazonaws.ssm#CommandId",
"traits": {
"smithy.api#documentation": "<p>The command against which this invocation was requested.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The instance ID in which this invocation was requested.</p>"
}
},
"InstanceName": {
"target": "com.amazonaws.ssm#InstanceTagName",
"traits": {
"smithy.api#documentation": "<p>The name of the invocation target. For EC2 instances this is the value for the aws:Name tag.\n For on-premises instances, this is the name of the instance.</p>"
}
},
"Comment": {
"target": "com.amazonaws.ssm#Comment",
"traits": {
"smithy.api#documentation": "<p>User-specified information about the command, such as a brief description of what the\n command should do.</p>"
}
},
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The document name that was requested for execution.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The SSM document version.</p>"
}
},
"RequestedDateTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time and date the request was sent to this instance.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#CommandInvocationStatus",
"traits": {
"smithy.api#documentation": "<p>Whether or not the invocation succeeded, failed, or is pending.</p>"
}
},
"StatusDetails": {
"target": "com.amazonaws.ssm#StatusDetails",
"traits": {
"smithy.api#documentation": "<p>A detailed status of the command execution for each invocation (each instance targeted by\n the command). StatusDetails includes more information than Status because it includes states\n resulting from error and concurrency control parameters. StatusDetails can show different results\n than Status. For more information about these statuses, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html\">Understanding command\n statuses</a> in the <i>AWS Systems Manager User Guide</i>. StatusDetails can be one of the\n following values:</p>\n <ul>\n <li>\n <p>Pending: The command has not been sent to the instance.</p>\n </li>\n <li>\n <p>In Progress: The command has been sent to the instance but has not reached a terminal\n state.</p>\n </li>\n <li>\n <p>Success: The execution of the command or plugin was successfully completed. This is a\n terminal state.</p>\n </li>\n <li>\n <p>Delivery Timed Out: The command was not delivered to the instance before the delivery\n timeout expired. Delivery timeouts do not count against the parent command's MaxErrors limit,\n but they do contribute to whether the parent command status is Success or Incomplete. This is a\n terminal state.</p>\n </li>\n <li>\n <p>Execution Timed Out: Command execution started on the instance, but the execution was not\n complete before the execution timeout expired. Execution timeouts count against the MaxErrors\n limit of the parent command. This is a terminal state.</p>\n </li>\n <li>\n <p>Failed: The command was not successful on the instance. For a plugin, this indicates that\n the result code was not zero. For a command invocation, this indicates that the result code for\n one or more plugins was not zero. Invocation failures count against the MaxErrors limit of the\n parent command. This is a terminal state.</p>\n </li>\n <li>\n <p>Canceled: The command was terminated before it was completed. This is a terminal\n state.</p>\n </li>\n <li>\n <p>Undeliverable: The command can't be delivered to the instance. The instance might not\n exist or might not be responding. Undeliverable invocations don't count against the parent\n command's MaxErrors limit and don't contribute to whether the parent command status is Success\n or Incomplete. This is a terminal state.</p>\n </li>\n <li>\n <p>Terminated: The parent command exceeded its MaxErrors limit and subsequent command\n invocations were canceled by the system. This is a terminal state.</p>\n </li>\n </ul>"
}
},
"TraceOutput": {
"target": "com.amazonaws.ssm#InvocationTraceOutput",
"traits": {
"smithy.api#documentation": "<p> Gets the trace output sent by the agent. </p>"
}
},
"StandardOutputUrl": {
"target": "com.amazonaws.ssm#Url",
"traits": {
"smithy.api#documentation": "<p>The URL to the plugin's StdOut file in Amazon S3, if the S3 bucket was defined for the parent\n command. For an invocation, StandardOutputUrl is populated if there is just one plugin defined\n for the command, and the S3 bucket was defined for the command.</p>"
}
},
"StandardErrorUrl": {
"target": "com.amazonaws.ssm#Url",
"traits": {
"smithy.api#documentation": "<p>The URL to the plugin's StdErr file in Amazon S3, if the S3 bucket was defined for the parent\n command. For an invocation, StandardErrorUrl is populated if there is just one plugin defined for\n the command, and the S3 bucket was defined for the command.</p>"
}
},
"CommandPlugins": {
"target": "com.amazonaws.ssm#CommandPluginList"
},
"ServiceRole": {
"target": "com.amazonaws.ssm#ServiceRole",
"traits": {
"smithy.api#documentation": "<p>The IAM service role that Run Command uses to act on your behalf when sending notifications\n about command status changes on a per instance basis.</p>"
}
},
"NotificationConfig": {
"target": "com.amazonaws.ssm#NotificationConfig",
"traits": {
"smithy.api#documentation": "<p>Configurations for sending notifications about command status changes on a per instance\n basis.</p>"
}
},
"CloudWatchOutputConfig": {
"target": "com.amazonaws.ssm#CloudWatchOutputConfig",
"traits": {
"smithy.api#documentation": "<p>CloudWatch Logs information where you want Systems Manager to send the command output.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An invocation is copy of a command sent to a specific instance. A command can apply to one\n or more instances. A command invocation applies to one instance. For example, if a user runs\n SendCommand against three instances, then a command invocation is created for each requested\n instance ID. A command invocation returns status and detail information about a command you ran.\n </p>"
}
},
"com.amazonaws.ssm#CommandInvocationList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#CommandInvocation"
}
},
"com.amazonaws.ssm#CommandInvocationStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Pending",
"name": "PENDING"
},
{
"value": "InProgress",
"name": "IN_PROGRESS"
},
{
"value": "Delayed",
"name": "DELAYED"
},
{
"value": "Success",
"name": "SUCCESS"
},
{
"value": "Cancelled",
"name": "CANCELLED"
},
{
"value": "TimedOut",
"name": "TIMED_OUT"
},
{
"value": "Failed",
"name": "FAILED"
},
{
"value": "Cancelling",
"name": "CANCELLING"
}
]
}
},
"com.amazonaws.ssm#CommandList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Command"
}
},
"com.amazonaws.ssm#CommandMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#CommandPlugin": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#CommandPluginName",
"traits": {
"smithy.api#documentation": "<p>The name of the plugin. Must be one of the following: aws:updateAgent, aws:domainjoin,\n aws:applications, aws:runPowerShellScript, aws:psmodule, aws:cloudWatch, aws:runShellScript, or\n aws:updateSSMAgent. </p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#CommandPluginStatus",
"traits": {
"smithy.api#documentation": "<p>The status of this plugin. You can run a document with multiple plugins.</p>"
}
},
"StatusDetails": {
"target": "com.amazonaws.ssm#StatusDetails",
"traits": {
"smithy.api#documentation": "<p>A detailed status of the plugin execution. StatusDetails includes more information than\n Status because it includes states resulting from error and concurrency control parameters.\n StatusDetails can show different results than Status. For more information about these statuses,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html\">Understanding command statuses</a> in the <i>AWS Systems Manager User Guide</i>.\n StatusDetails can be one of the following values:</p>\n <ul>\n <li>\n <p>Pending: The command has not been sent to the instance.</p>\n </li>\n <li>\n <p>In Progress: The command has been sent to the instance but has not reached a terminal\n state.</p>\n </li>\n <li>\n <p>Success: The execution of the command or plugin was successfully completed. This is a\n terminal state.</p>\n </li>\n <li>\n <p>Delivery Timed Out: The command was not delivered to the instance before the delivery\n timeout expired. Delivery timeouts do not count against the parent command's MaxErrors limit,\n but they do contribute to whether the parent command status is Success or Incomplete. This is a\n terminal state.</p>\n </li>\n <li>\n <p>Execution Timed Out: Command execution started on the instance, but the execution was not\n complete before the execution timeout expired. Execution timeouts count against the MaxErrors\n limit of the parent command. This is a terminal state.</p>\n </li>\n <li>\n <p>Failed: The command was not successful on the instance. For a plugin, this indicates that\n the result code was not zero. For a command invocation, this indicates that the result code for\n one or more plugins was not zero. Invocation failures count against the MaxErrors limit of the\n parent command. This is a terminal state.</p>\n </li>\n <li>\n <p>Canceled: The command was terminated before it was completed. This is a terminal\n state.</p>\n </li>\n <li>\n <p>Undeliverable: The command can't be delivered to the instance. The instance might not\n exist, or it might not be responding. Undeliverable invocations don't count against the parent\n command's MaxErrors limit, and they don't contribute to whether the parent command status is\n Success or Incomplete. This is a terminal state.</p>\n </li>\n <li>\n <p>Terminated: The parent command exceeded its MaxErrors limit and subsequent command\n invocations were canceled by the system. This is a terminal state.</p>\n </li>\n </ul>"
}
},
"ResponseCode": {
"target": "com.amazonaws.ssm#ResponseCode",
"traits": {
"smithy.api#documentation": "<p>A numeric response code generated after running the plugin. </p>"
}
},
"ResponseStartDateTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the plugin started running. </p>"
}
},
"ResponseFinishDateTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the plugin stopped running. Could stop prematurely if, for example, a cancel\n command was sent. </p>"
}
},
"Output": {
"target": "com.amazonaws.ssm#CommandPluginOutput",
"traits": {
"smithy.api#documentation": "<p>Output of the plugin execution.</p>"
}
},
"StandardOutputUrl": {
"target": "com.amazonaws.ssm#Url",
"traits": {
"smithy.api#documentation": "<p>The URL for the complete text written by the plugin to stdout in Amazon S3. If the S3 bucket for\n the command was not specified, then this string is empty.</p>"
}
},
"StandardErrorUrl": {
"target": "com.amazonaws.ssm#Url",
"traits": {
"smithy.api#documentation": "<p>The URL for the complete text written by the plugin to stderr. If execution is not yet\n complete, then this string is empty.</p>"
}
},
"OutputS3Region": {
"target": "com.amazonaws.ssm#S3Region",
"traits": {
"smithy.api#documentation": "<p>(Deprecated) You can no longer specify this parameter. The system ignores it. Instead, Systems Manager\n automatically determines the S3 bucket region.</p>"
}
},
"OutputS3BucketName": {
"target": "com.amazonaws.ssm#S3BucketName",
"traits": {
"smithy.api#documentation": "<p>The S3 bucket where the responses to the command executions should be stored. This was\n requested when issuing the command. For example, in the following response:</p>\n <p>doc-example-bucket/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-02573cafcfEXAMPLE/awsrunShellScript </p>\n <p>doc-example-bucket is the name of the S3 bucket;</p>\n <p>ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3 prefix;</p>\n <p>i-02573cafcfEXAMPLE is the instance ID;</p>\n <p>awsrunShellScript is the name of the plugin.</p>"
}
},
"OutputS3KeyPrefix": {
"target": "com.amazonaws.ssm#S3KeyPrefix",
"traits": {
"smithy.api#documentation": "<p>The S3 directory path inside the bucket where the responses to the command executions should\n be stored. This was requested when issuing the command. For example, in the following\n response:</p>\n <p>doc-example-bucket/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-02573cafcfEXAMPLE/awsrunShellScript </p>\n <p>doc-example-bucket is the name of the S3 bucket;</p>\n <p>ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3 prefix;</p>\n <p>i-02573cafcfEXAMPLE is the instance ID;</p>\n <p>awsrunShellScript is the name of the plugin.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes plugin details.</p>"
}
},
"com.amazonaws.ssm#CommandPluginList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#CommandPlugin"
}
},
"com.amazonaws.ssm#CommandPluginName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 4
}
}
},
"com.amazonaws.ssm#CommandPluginOutput": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 2500
}
}
},
"com.amazonaws.ssm#CommandPluginStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Pending",
"name": "PENDING"
},
{
"value": "InProgress",
"name": "IN_PROGRESS"
},
{
"value": "Success",
"name": "SUCCESS"
},
{
"value": "TimedOut",
"name": "TIMED_OUT"
},
{
"value": "Cancelled",
"name": "CANCELLED"
},
{
"value": "Failed",
"name": "FAILED"
}
]
}
},
"com.amazonaws.ssm#CommandStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Pending",
"name": "PENDING"
},
{
"value": "InProgress",
"name": "IN_PROGRESS"
},
{
"value": "Success",
"name": "SUCCESS"
},
{
"value": "Cancelled",
"name": "CANCELLED"
},
{
"value": "Failed",
"name": "FAILED"
},
{
"value": "TimedOut",
"name": "TIMED_OUT"
},
{
"value": "Cancelling",
"name": "CANCELLING"
}
]
}
},
"com.amazonaws.ssm#Comment": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 100
}
}
},
"com.amazonaws.ssm#CompletedCount": {
"type": "integer"
},
"com.amazonaws.ssm#ComplianceExecutionId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 100
}
}
},
"com.amazonaws.ssm#ComplianceExecutionSummary": {
"type": "structure",
"members": {
"ExecutionTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the execution ran as a datetime object that is saved in the following format:\n yyyy-MM-dd'T'HH:mm:ss'Z'.</p>",
"smithy.api#required": {}
}
},
"ExecutionId": {
"target": "com.amazonaws.ssm#ComplianceExecutionId",
"traits": {
"smithy.api#documentation": "<p>An ID created by the system when <code>PutComplianceItems</code> was called. For example,\n <code>CommandID</code> is a valid execution ID. You can use this ID in subsequent calls.</p>"
}
},
"ExecutionType": {
"target": "com.amazonaws.ssm#ComplianceExecutionType",
"traits": {
"smithy.api#documentation": "<p>The type of execution. For example, <code>Command</code> is a valid execution type.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A summary of the call execution that includes an execution ID, the type of execution (for\n example, <code>Command</code>), and the date/time of the execution using a datetime object that\n is saved in the following format: yyyy-MM-dd'T'HH:mm:ss'Z'.</p>"
}
},
"com.amazonaws.ssm#ComplianceExecutionType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 50
}
}
},
"com.amazonaws.ssm#ComplianceFilterValue": {
"type": "string"
},
"com.amazonaws.ssm#ComplianceItem": {
"type": "structure",
"members": {
"ComplianceType": {
"target": "com.amazonaws.ssm#ComplianceTypeName",
"traits": {
"smithy.api#documentation": "<p>The compliance type. For example, Association (for a State Manager association), Patch, or\n Custom:<code>string</code> are all valid compliance types.</p>"
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#ComplianceResourceType",
"traits": {
"smithy.api#documentation": "<p>The type of resource. <code>ManagedInstance</code> is currently the only supported resource\n type.</p>"
}
},
"ResourceId": {
"target": "com.amazonaws.ssm#ComplianceResourceId",
"traits": {
"smithy.api#documentation": "<p>An ID for the resource. For a managed instance, this is the instance ID.</p>"
}
},
"Id": {
"target": "com.amazonaws.ssm#ComplianceItemId",
"traits": {
"smithy.api#documentation": "<p>An ID for the compliance item. For example, if the compliance item is a Windows patch, the\n ID could be the number of the KB article; for example: KB4010320.</p>"
}
},
"Title": {
"target": "com.amazonaws.ssm#ComplianceItemTitle",
"traits": {
"smithy.api#documentation": "<p>A title for the compliance item. For example, if the compliance item is a Windows patch, the\n title could be the title of the KB article for the patch; for example: Security Update for Active\n Directory Federation Services.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#ComplianceStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the compliance item. An item is either COMPLIANT, NON_COMPLIANT, or an empty\n string (for Windows patches that aren't applicable).</p>"
}
},
"Severity": {
"target": "com.amazonaws.ssm#ComplianceSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity of the compliance status. Severity can be one of the following: Critical, High,\n Medium, Low, Informational, Unspecified.</p>"
}
},
"ExecutionSummary": {
"target": "com.amazonaws.ssm#ComplianceExecutionSummary",
"traits": {
"smithy.api#documentation": "<p>A summary for the compliance item. The summary includes an execution ID, the execution type\n (for example, command), and the execution time.</p>"
}
},
"Details": {
"target": "com.amazonaws.ssm#ComplianceItemDetails",
"traits": {
"smithy.api#documentation": "<p>A \"Key\": \"Value\" tag combination for the compliance item.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the compliance as defined by the resource type. For example, for a patch\n resource type, <code>Items</code> includes information about the PatchSeverity, Classification,\n and so on.</p>"
}
},
"com.amazonaws.ssm#ComplianceItemContentHash": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 256
}
}
},
"com.amazonaws.ssm#ComplianceItemDetails": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#AttributeName"
},
"value": {
"target": "com.amazonaws.ssm#AttributeValue"
}
},
"com.amazonaws.ssm#ComplianceItemEntry": {
"type": "structure",
"members": {
"Id": {
"target": "com.amazonaws.ssm#ComplianceItemId",
"traits": {
"smithy.api#documentation": "<p>The compliance item ID. For example, if the compliance item is a Windows patch, the ID could\n be the number of the KB article.</p>"
}
},
"Title": {
"target": "com.amazonaws.ssm#ComplianceItemTitle",
"traits": {
"smithy.api#documentation": "<p>The title of the compliance item. For example, if the compliance item is a Windows patch,\n the title could be the title of the KB article for the patch; for example: Security Update for\n Active Directory Federation Services. </p>"
}
},
"Severity": {
"target": "com.amazonaws.ssm#ComplianceSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity of the compliance status. Severity can be one of the following: Critical, High,\n Medium, Low, Informational, Unspecified.</p>",
"smithy.api#required": {}
}
},
"Status": {
"target": "com.amazonaws.ssm#ComplianceStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.</p>",
"smithy.api#required": {}
}
},
"Details": {
"target": "com.amazonaws.ssm#ComplianceItemDetails",
"traits": {
"smithy.api#documentation": "<p>A \"Key\": \"Value\" tag combination for the compliance item.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about a compliance item.</p>"
}
},
"com.amazonaws.ssm#ComplianceItemEntryList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ComplianceItemEntry"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 10000
}
}
},
"com.amazonaws.ssm#ComplianceItemId": {
"type": "string"
},
"com.amazonaws.ssm#ComplianceItemList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ComplianceItem",
"traits": {
"smithy.api#xmlName": "Item"
}
}
},
"com.amazonaws.ssm#ComplianceItemTitle": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 500
}
}
},
"com.amazonaws.ssm#ComplianceQueryOperatorType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "EQUAL",
"name": "Equal"
},
{
"value": "NOT_EQUAL",
"name": "NotEqual"
},
{
"value": "BEGIN_WITH",
"name": "BeginWith"
},
{
"value": "LESS_THAN",
"name": "LessThan"
},
{
"value": "GREATER_THAN",
"name": "GreaterThan"
}
]
}
},
"com.amazonaws.ssm#ComplianceResourceId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 100
}
}
},
"com.amazonaws.ssm#ComplianceResourceIdList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ComplianceResourceId"
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#ComplianceResourceType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#ComplianceResourceTypeList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ComplianceResourceType"
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#ComplianceSeverity": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "CRITICAL",
"name": "Critical"
},
{
"value": "HIGH",
"name": "High"
},
{
"value": "MEDIUM",
"name": "Medium"
},
{
"value": "LOW",
"name": "Low"
},
{
"value": "INFORMATIONAL",
"name": "Informational"
},
{
"value": "UNSPECIFIED",
"name": "Unspecified"
}
]
}
},
"com.amazonaws.ssm#ComplianceStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "COMPLIANT",
"name": "Compliant"
},
{
"value": "NON_COMPLIANT",
"name": "NonCompliant"
}
]
}
},
"com.amazonaws.ssm#ComplianceStringFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#ComplianceStringFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>"
}
},
"Values": {
"target": "com.amazonaws.ssm#ComplianceStringFilterValueList",
"traits": {
"smithy.api#documentation": "<p>The value for which to search.</p>"
}
},
"Type": {
"target": "com.amazonaws.ssm#ComplianceQueryOperatorType",
"traits": {
"smithy.api#documentation": "<p>The type of comparison that should be performed for the value: Equal, NotEqual, BeginWith,\n LessThan, or GreaterThan.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>One or more filters. Use a filter to return a more specific list of results.</p>"
}
},
"com.amazonaws.ssm#ComplianceStringFilterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 200
}
}
},
"com.amazonaws.ssm#ComplianceStringFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ComplianceStringFilter",
"traits": {
"smithy.api#xmlName": "ComplianceFilter"
}
}
},
"com.amazonaws.ssm#ComplianceStringFilterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ComplianceFilterValue",
"traits": {
"smithy.api#xmlName": "FilterValue"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 20
}
}
},
"com.amazonaws.ssm#ComplianceSummaryCount": {
"type": "integer"
},
"com.amazonaws.ssm#ComplianceSummaryItem": {
"type": "structure",
"members": {
"ComplianceType": {
"target": "com.amazonaws.ssm#ComplianceTypeName",
"traits": {
"smithy.api#documentation": "<p>The type of compliance item. For example, the compliance type can be Association, Patch, or\n Custom:string.</p>"
}
},
"CompliantSummary": {
"target": "com.amazonaws.ssm#CompliantSummary",
"traits": {
"smithy.api#documentation": "<p>A list of COMPLIANT items for the specified compliance type.</p>"
}
},
"NonCompliantSummary": {
"target": "com.amazonaws.ssm#NonCompliantSummary",
"traits": {
"smithy.api#documentation": "<p>A list of NON_COMPLIANT items for the specified compliance type.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A summary of compliance information by compliance type.</p>"
}
},
"com.amazonaws.ssm#ComplianceSummaryItemList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ComplianceSummaryItem",
"traits": {
"smithy.api#xmlName": "Item"
}
}
},
"com.amazonaws.ssm#ComplianceTypeCountLimitExceededException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You specified too many custom compliance types. You can specify a maximum of 10 different\n types. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ComplianceTypeName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 100
},
"smithy.api#pattern": "[A-Za-z0-9_\\-]\\w+|Custom:[a-zA-Z0-9_\\-]\\w+"
}
},
"com.amazonaws.ssm#ComplianceUploadType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "COMPLETE",
"name": "Complete"
},
{
"value": "PARTIAL",
"name": "Partial"
}
]
}
},
"com.amazonaws.ssm#CompliantSummary": {
"type": "structure",
"members": {
"CompliantCount": {
"target": "com.amazonaws.ssm#ComplianceSummaryCount",
"traits": {
"smithy.api#documentation": "<p>The total number of resources that are compliant.</p>"
}
},
"SeveritySummary": {
"target": "com.amazonaws.ssm#SeveritySummary",
"traits": {
"smithy.api#documentation": "<p>A summary of the compliance severity by compliance type.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A summary of resources that are compliant. The summary is organized according to the\n resource count for each compliance type.</p>"
}
},
"com.amazonaws.ssm#ComputerName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 255
}
}
},
"com.amazonaws.ssm#ConnectionStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Connected",
"name": "CONNECTED"
},
{
"value": "NotConnected",
"name": "NOT_CONNECTED"
}
]
}
},
"com.amazonaws.ssm#ContentLength": {
"type": "long"
},
"com.amazonaws.ssm#CreateActivation": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CreateActivationRequest"
},
"output": {
"target": "com.amazonaws.ssm#CreateActivationResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Generates an activation code and activation ID you can use to register your on-premises\n server or virtual machine (VM) with Systems Manager. Registering these machines with Systems Manager makes it\n possible to manage them using Systems Manager capabilities. You use the activation code and ID when\n installing SSM Agent on machines in your hybrid environment. For more information about\n requirements for managing on-premises instances and VMs using Systems Manager, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-managedinstances.html\">Setting up\n AWS Systems Manager for hybrid environments</a> in the <i>AWS Systems Manager User Guide</i>. </p>\n <note>\n <p>On-premises servers or VMs that are registered with Systems Manager and EC2 instances that you manage\n with Systems Manager are all called <i>managed instances</i>.</p>\n </note>"
}
},
"com.amazonaws.ssm#CreateActivationRequest": {
"type": "structure",
"members": {
"Description": {
"target": "com.amazonaws.ssm#ActivationDescription",
"traits": {
"smithy.api#documentation": "<p>A user-defined description of the resource that you want to register with Systems Manager. </p>\n <important>\n <p>Do not enter personally identifiable information in this field.</p>\n </important>"
}
},
"DefaultInstanceName": {
"target": "com.amazonaws.ssm#DefaultInstanceName",
"traits": {
"smithy.api#documentation": "<p>The name of the registered, managed instance as it will appear in the Systems Manager console or when\n you use the AWS command line tools to list Systems Manager resources.</p>\n <important>\n <p>Do not enter personally identifiable information in this field.</p>\n </important>"
}
},
"IamRole": {
"target": "com.amazonaws.ssm#IamRole",
"traits": {
"smithy.api#documentation": "<p>The Amazon Identity and Access Management (IAM) role that you want to assign to the managed\n instance. This IAM role must provide AssumeRole permissions for the Systems Manager service principal\n <code>ssm.amazonaws.com</code>. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-service-role.html\">Create an IAM service role for a\n hybrid environment</a> in the <i>AWS Systems Manager User Guide</i>.</p>",
"smithy.api#required": {}
}
},
"RegistrationLimit": {
"target": "com.amazonaws.ssm#RegistrationLimit",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Specify the maximum number of managed instances you want to register. The default value is 1\n instance.</p>"
}
},
"ExpirationDate": {
"target": "com.amazonaws.ssm#ExpirationDate",
"traits": {
"smithy.api#documentation": "<p>The date by which this activation request should expire, in timestamp format, such as\n \"2021-07-07T00:00:00\". You can specify a date up to 30 days in advance. If you don't provide an\n expiration date, the activation code expires in 24 hours.</p>"
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>Optional metadata that you assign to a resource. Tags enable you to categorize a resource in\n different ways, such as by purpose, owner, or environment. For example, you might want to tag an\n activation to identify which servers or virtual machines (VMs) in your on-premises environment\n you intend to activate. In this case, you could specify the following key name/value\n pairs:</p>\n <ul>\n <li>\n <p>\n <code>Key=OS,Value=Windows</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=Environment,Value=Production</code>\n </p>\n </li>\n </ul>\n <important>\n <p>When you install SSM Agent on your on-premises servers and VMs, you specify an activation\n ID and code. When you specify the activation ID and code, tags assigned to the activation are\n automatically applied to the on-premises servers or VMs.</p>\n </important>\n <p>You can't add tags to or delete tags from an existing activation. You can tag your\n on-premises servers and VMs after they connect to Systems Manager for the first time and are assigned a\n managed instance ID. This means they are listed in the AWS Systems Manager console with an ID that is\n prefixed with \"mi-\". For information about how to add tags to your managed instances, see <a>AddTagsToResource</a>. For information about how to remove tags from your managed\n instances, see <a>RemoveTagsFromResource</a>.</p>"
}
}
}
},
"com.amazonaws.ssm#CreateActivationResult": {
"type": "structure",
"members": {
"ActivationId": {
"target": "com.amazonaws.ssm#ActivationId",
"traits": {
"smithy.api#documentation": "<p>The ID number generated by the system when it processed the activation. The activation ID\n functions like a user name.</p>"
}
},
"ActivationCode": {
"target": "com.amazonaws.ssm#ActivationCode",
"traits": {
"smithy.api#documentation": "<p>The code the system generates when it processes the activation. The activation code\n functions like a password to validate the activation ID. </p>"
}
}
}
},
"com.amazonaws.ssm#CreateAssociation": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CreateAssociationRequest"
},
"output": {
"target": "com.amazonaws.ssm#CreateAssociationResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociationAlreadyExists"
},
{
"target": "com.amazonaws.ssm#AssociationLimitExceeded"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentVersion"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidOutputLocation"
},
{
"target": "com.amazonaws.ssm#InvalidParameters"
},
{
"target": "com.amazonaws.ssm#InvalidSchedule"
},
{
"target": "com.amazonaws.ssm#InvalidTarget"
},
{
"target": "com.amazonaws.ssm#UnsupportedPlatformType"
}
],
"traits": {
"smithy.api#documentation": "<p>A State Manager association defines the state that you want to maintain on your instances.\n For example, an association can specify that anti-virus software must be installed and running on\n your instances, or that certain ports must be closed. For static targets, the association\n specifies a schedule for when the configuration is reapplied. For dynamic targets, such as an AWS\n Resource Group or an AWS Autoscaling Group, State Manager applies the configuration when new\n instances are added to the group. The association also specifies actions to take when applying\n the configuration. For example, an association for anti-virus software might run once a day. If\n the software is not installed, then State Manager installs it. If the software is installed, but\n the service is not running, then the association might instruct State Manager to start the\n service. </p>"
}
},
"com.amazonaws.ssm#CreateAssociationBatch": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CreateAssociationBatchRequest"
},
"output": {
"target": "com.amazonaws.ssm#CreateAssociationBatchResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociationLimitExceeded"
},
{
"target": "com.amazonaws.ssm#DuplicateInstanceId"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentVersion"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidOutputLocation"
},
{
"target": "com.amazonaws.ssm#InvalidParameters"
},
{
"target": "com.amazonaws.ssm#InvalidSchedule"
},
{
"target": "com.amazonaws.ssm#InvalidTarget"
},
{
"target": "com.amazonaws.ssm#UnsupportedPlatformType"
}
],
"traits": {
"smithy.api#documentation": "<p>Associates the specified Systems Manager document with the specified instances or targets.</p>\n <p>When you associate a document with one or more instances using instance IDs or tags,\n SSM Agent running on the instance processes the document and configures the instance as\n specified.</p>\n <p>If you associate a document with an instance that already has an associated document, the\n system returns the AssociationAlreadyExists exception.</p>"
}
},
"com.amazonaws.ssm#CreateAssociationBatchRequest": {
"type": "structure",
"members": {
"Entries": {
"target": "com.amazonaws.ssm#CreateAssociationBatchRequestEntries",
"traits": {
"smithy.api#documentation": "<p>One or more associations.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#CreateAssociationBatchRequestEntries": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#CreateAssociationBatchRequestEntry",
"traits": {
"smithy.api#xmlName": "entries"
}
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#CreateAssociationBatchRequestEntry": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the SSM document that contains the configuration information for the instance.\n You can specify Command or Automation documents.</p>\n <p>You can specify AWS-predefined documents, documents you created, or a document that is\n shared with you from another account.</p>\n <p>For SSM documents that are shared with you from other AWS accounts, you must specify the\n complete SSM document ARN, in the following format:</p>\n <p>\n <code>arn:aws:ssm:<i>region</i>:<i>account-id</i>:document/<i>document-name</i>\n </code>\n </p>\n <p>For example:</p>\n <p>\n <code>arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document</code>\n </p>\n <p>For AWS-predefined documents and SSM documents you created in your account, you only need to\n specify the document name. For example, <code>AWS-ApplyPatchBaseline</code> or\n <code>My-Document</code>.</p>",
"smithy.api#required": {}
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance. </p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#Parameters",
"traits": {
"smithy.api#documentation": "<p>A description of the parameters for a document. </p>"
}
},
"AutomationTargetParameterName": {
"target": "com.amazonaws.ssm#AutomationTargetParameterName",
"traits": {
"smithy.api#documentation": "<p>Specify the target for the association. This target is required for associations that use an\n Automation document and target resources by using rate controls.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The instances targeted by the request.</p>"
}
},
"ScheduleExpression": {
"target": "com.amazonaws.ssm#ScheduleExpression",
"traits": {
"smithy.api#documentation": "<p>A cron expression that specifies a schedule when the association runs.</p>"
}
},
"OutputLocation": {
"target": "com.amazonaws.ssm#InstanceAssociationOutputLocation",
"traits": {
"smithy.api#documentation": "<p>An S3 bucket where you want to store the results of this request.</p>"
}
},
"AssociationName": {
"target": "com.amazonaws.ssm#AssociationName",
"traits": {
"smithy.api#documentation": "<p>Specify a descriptive name for the association.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The number of errors that are allowed before the system stops sending requests to run the\n association on additional targets. You can specify either an absolute number of errors, for\n example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,\n the system stops sending requests when the fourth error is received. If you specify 0, then the\n system stops sending requests after the first error is returned. If you run an association on 50\n instances and set MaxError to 10%, then the system stops sending the request when the sixth error\n is received.</p>\n <p>Executions that are already running an association when MaxErrors is reached are allowed to\n complete, but some of these executions may fail as well. If you need to ensure that there won't\n be more than max-errors failed executions, set MaxConcurrency to 1 so that executions proceed one\n at a time.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of targets allowed to run the association at the same time. You can\n specify a number, for example 10, or a percentage of the target set, for example 10%. The default\n value is 100%, which means all targets run the association at the same time.</p>\n <p>If a new instance starts and attempts to run an association while Systems Manager is running\n MaxConcurrency associations, the association is allowed to run. During the next association\n interval, the new instance will process its association within the limit specified for\n MaxConcurrency.</p>"
}
},
"ComplianceSeverity": {
"target": "com.amazonaws.ssm#AssociationComplianceSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity level to assign to the association.</p>"
}
},
"SyncCompliance": {
"target": "com.amazonaws.ssm#AssociationSyncCompliance",
"traits": {
"smithy.api#documentation": "<p>The mode for generating association compliance. You can specify <code>AUTO</code> or\n <code>MANUAL</code>. In <code>AUTO</code> mode, the system uses the status of the association\n execution to determine the compliance status. If the association execution runs successfully,\n then the association is <code>COMPLIANT</code>. If the association execution doesn't run\n successfully, the association is <code>NON-COMPLIANT</code>. </p>\n <p>In <code>MANUAL</code> mode, you must specify the <code>AssociationId</code> as a parameter\n for the <a>PutComplianceItems</a> API action. In this case, compliance data is not\n managed by State Manager. It is managed by your direct call to the <a>PutComplianceItems</a> API action.</p>\n <p>By default, all associations use <code>AUTO</code> mode.</p>"
}
},
"ApplyOnlyAtCronInterval": {
"target": "com.amazonaws.ssm#ApplyOnlyAtCronInterval",
"traits": {
"smithy.api#documentation": "<p>By default, when you create a new associations, the system runs it immediately after it is\n created and then according to the schedule you specified. Specify this option if you don't want\n an association to run immediately after you create it. This parameter is not supported for rate\n expressions.</p>"
}
},
"CalendarNames": {
"target": "com.amazonaws.ssm#CalendarNameOrARNList",
"traits": {
"smithy.api#documentation": "<p>The names or Amazon Resource Names (ARNs) of the Systems Manager Change Calendar type \n documents your associations are gated under. The associations only run when that Change \n Calendar is open. For more information, see \n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar\">AWS Systems Manager Change Calendar</a>.</p>"
}
},
"TargetLocations": {
"target": "com.amazonaws.ssm#TargetLocations",
"traits": {
"smithy.api#documentation": "<p>Use this action to create an association in multiple Regions and multiple accounts.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes the association of a Systems Manager SSM document and an instance.</p>"
}
},
"com.amazonaws.ssm#CreateAssociationBatchResult": {
"type": "structure",
"members": {
"Successful": {
"target": "com.amazonaws.ssm#AssociationDescriptionList",
"traits": {
"smithy.api#documentation": "<p>Information about the associations that succeeded.</p>"
}
},
"Failed": {
"target": "com.amazonaws.ssm#FailedCreateAssociationList",
"traits": {
"smithy.api#documentation": "<p>Information about the associations that failed.</p>"
}
}
}
},
"com.amazonaws.ssm#CreateAssociationRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the SSM document that contains the configuration information for the instance.\n You can specify Command or Automation documents.</p>\n <p>You can specify AWS-predefined documents, documents you created, or a document that is\n shared with you from another account.</p>\n <p>For SSM documents that are shared with you from other AWS accounts, you must specify the\n complete SSM document ARN, in the following format:</p>\n <p>\n <code>arn:<i>partition</i>:ssm:<i>region</i>:<i>account-id</i>:document/<i>document-name</i>\n </code>\n </p>\n <p>For example:</p>\n <p>\n <code>arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document</code>\n </p>\n <p>For AWS-predefined documents and SSM documents you created in your account, you only need to\n specify the document name. For example, <code>AWS-ApplyPatchBaseline</code> or\n <code>My-Document</code>.</p>",
"smithy.api#required": {}
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version you want to associate with the target(s). Can be a specific version or\n the default version.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The instance ID.</p>\n <note>\n <p>\n <code>InstanceId</code> has been deprecated. To specify an instance ID for an association,\n use the <code>Targets</code> parameter. Requests that include the\n parameter <code>InstanceID</code> with SSM documents that use schema version 2.0 or later will\n fail. In addition, if you use the parameter <code>InstanceId</code>, you\n cannot use the parameters <code>AssociationName</code>, <code>DocumentVersion</code>,\n <code>MaxErrors</code>, <code>MaxConcurrency</code>, <code>OutputLocation</code>, or\n <code>ScheduleExpression</code>. To use these parameters, you must use the <code>Targets</code>\n parameter.</p>\n </note>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#Parameters",
"traits": {
"smithy.api#documentation": "<p>The parameters for the runtime configuration of the document.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets for the association. You can target instances by using tags, AWS Resource\n Groups, all instances in an AWS account, or individual instance IDs. For more information about\n choosing targets for an association, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-state-manager-targets-and-rate-controls.html\">Using targets and rate controls with State Manager associations</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"ScheduleExpression": {
"target": "com.amazonaws.ssm#ScheduleExpression",
"traits": {
"smithy.api#documentation": "<p>A cron expression when the association will be applied to the target(s).</p>"
}
},
"OutputLocation": {
"target": "com.amazonaws.ssm#InstanceAssociationOutputLocation",
"traits": {
"smithy.api#documentation": "<p>An S3 bucket where you want to store the output details of the request.</p>"
}
},
"AssociationName": {
"target": "com.amazonaws.ssm#AssociationName",
"traits": {
"smithy.api#documentation": "<p>Specify a descriptive name for the association.</p>"
}
},
"AutomationTargetParameterName": {
"target": "com.amazonaws.ssm#AutomationTargetParameterName",
"traits": {
"smithy.api#documentation": "<p>Specify the target for the association. This target is required for associations that use an\n Automation document and target resources by using rate controls.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The number of errors that are allowed before the system stops sending requests to run the\n association on additional targets. You can specify either an absolute number of errors, for\n example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,\n the system stops sending requests when the fourth error is received. If you specify 0, then the\n system stops sending requests after the first error is returned. If you run an association on 50\n instances and set MaxError to 10%, then the system stops sending the request when the sixth error\n is received.</p>\n <p>Executions that are already running an association when MaxErrors is reached are allowed to\n complete, but some of these executions may fail as well. If you need to ensure that there won't\n be more than max-errors failed executions, set MaxConcurrency to 1 so that executions proceed one\n at a time.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of targets allowed to run the association at the same time. You can\n specify a number, for example 10, or a percentage of the target set, for example 10%. The default\n value is 100%, which means all targets run the association at the same time.</p>\n <p>If a new instance starts and attempts to run an association while Systems Manager is running\n MaxConcurrency associations, the association is allowed to run. During the next association\n interval, the new instance will process its association within the limit specified for\n MaxConcurrency.</p>"
}
},
"ComplianceSeverity": {
"target": "com.amazonaws.ssm#AssociationComplianceSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity level to assign to the association.</p>"
}
},
"SyncCompliance": {
"target": "com.amazonaws.ssm#AssociationSyncCompliance",
"traits": {
"smithy.api#documentation": "<p>The mode for generating association compliance. You can specify <code>AUTO</code> or\n <code>MANUAL</code>. In <code>AUTO</code> mode, the system uses the status of the association\n execution to determine the compliance status. If the association execution runs successfully,\n then the association is <code>COMPLIANT</code>. If the association execution doesn't run\n successfully, the association is <code>NON-COMPLIANT</code>.</p>\n <p>In <code>MANUAL</code> mode, you must specify the <code>AssociationId</code> as a parameter\n for the <a>PutComplianceItems</a> API action. In this case, compliance data is not\n managed by State Manager. It is managed by your direct call to the <a>PutComplianceItems</a> API action.</p>\n <p>By default, all associations use <code>AUTO</code> mode.</p>"
}
},
"ApplyOnlyAtCronInterval": {
"target": "com.amazonaws.ssm#ApplyOnlyAtCronInterval",
"traits": {
"smithy.api#documentation": "<p>By default, when you create a new association, the system runs it immediately after it is\n created and then according to the schedule you specified. Specify this option if you don't want\n an association to run immediately after you create it. This parameter is not supported for rate\n expressions.</p>"
}
},
"CalendarNames": {
"target": "com.amazonaws.ssm#CalendarNameOrARNList",
"traits": {
"smithy.api#documentation": "<p>The names or Amazon Resource Names (ARNs) of the Systems Manager Change Calendar type\n documents you want to gate your associations under. The associations only run when that Change\n Calendar is open. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar\">AWS Systems Manager Change\n Calendar</a>.</p>"
}
},
"TargetLocations": {
"target": "com.amazonaws.ssm#TargetLocations",
"traits": {
"smithy.api#documentation": "<p>A location is a combination of AWS Regions and AWS accounts where you want to run the\n association. Use this action to create an association in multiple Regions and multiple\n accounts.</p>"
}
}
}
},
"com.amazonaws.ssm#CreateAssociationResult": {
"type": "structure",
"members": {
"AssociationDescription": {
"target": "com.amazonaws.ssm#AssociationDescription",
"traits": {
"smithy.api#documentation": "<p>Information about the association.</p>"
}
}
}
},
"com.amazonaws.ssm#CreateDocument": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CreateDocumentRequest"
},
"output": {
"target": "com.amazonaws.ssm#CreateDocumentResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DocumentAlreadyExists"
},
{
"target": "com.amazonaws.ssm#DocumentLimitExceeded"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentContent"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentSchemaVersion"
},
{
"target": "com.amazonaws.ssm#MaxDocumentSizeExceeded"
}
],
"traits": {
"smithy.api#documentation": "<p>Creates a Systems Manager (SSM) document. An SSM document defines the actions that Systems Manager performs on\n your managed instances. For more information about SSM documents, including information about\n supported schemas, features, and syntax, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-ssm-docs.html\">AWS Systems Manager Documents</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"com.amazonaws.ssm#CreateDocumentRequest": {
"type": "structure",
"members": {
"Content": {
"target": "com.amazonaws.ssm#DocumentContent",
"traits": {
"smithy.api#documentation": "<p>The content for the new SSM document in JSON or YAML format. We recommend storing the\n contents for your new document in an external JSON or YAML file and referencing the file in a\n command.</p>\n <p>For examples, see the following topics in the <i>AWS Systems Manager User Guide</i>.</p>\n <ul>\n <li>\n <p>\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/create-ssm-document-api.html\">Create an SSM document\n (AWS API)</a>\n </p>\n </li>\n <li>\n <p>\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/create-ssm-document-cli.html\">Create an SSM document\n (AWS CLI)</a>\n </p>\n </li>\n <li>\n <p>\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/create-ssm-document-api.html\">Create an SSM document\n (API)</a>\n </p>\n </li>\n </ul>",
"smithy.api#required": {}
}
},
"Requires": {
"target": "com.amazonaws.ssm#DocumentRequiresList",
"traits": {
"smithy.api#documentation": "<p>A list of SSM documents required by a document. This parameter is used exclusively by AWS\n AppConfig. When a user creates an AppConfig configuration in an SSM document, the user must also\n specify a required document for validation purposes. In this case, an\n <code>ApplicationConfiguration</code> document requires an\n <code>ApplicationConfigurationSchema</code> document for validation purposes. For more\n information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/appconfig.html\">AWS AppConfig</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"Attachments": {
"target": "com.amazonaws.ssm#AttachmentsSourceList",
"traits": {
"smithy.api#documentation": "<p>A list of key and value pairs that describe attachments to a version of a document.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>A name for the Systems Manager document.</p>\n <important>\n <p>You can't use the following strings as document name prefixes. These are reserved by AWS\n for use as document name prefixes:</p>\n <ul>\n <li>\n <p>\n <code>aws-</code>\n </p>\n </li>\n <li>\n <p>\n <code>amazon</code>\n </p>\n </li>\n <li>\n <p>\n <code>amzn</code>\n </p>\n </li>\n </ul>\n </important>",
"smithy.api#required": {}
}
},
"DisplayName": {
"target": "com.amazonaws.ssm#DocumentDisplayName",
"traits": {
"smithy.api#documentation": "<p>An optional field where you can specify a friendly name for the Systems Manager document. This value\n can differ for each version of the document. You can update this value at a later time using the\n <a>UpdateDocument</a> action.</p>"
}
},
"VersionName": {
"target": "com.amazonaws.ssm#DocumentVersionName",
"traits": {
"smithy.api#documentation": "<p>An optional field specifying the version of the artifact you are creating with the document.\n For example, \"Release 12, Update 6\". This value is unique across all versions of a document, and\n cannot be changed.</p>"
}
},
"DocumentType": {
"target": "com.amazonaws.ssm#DocumentType",
"traits": {
"smithy.api#documentation": "<p>The type of document to create.</p>"
}
},
"DocumentFormat": {
"target": "com.amazonaws.ssm#DocumentFormat",
"traits": {
"smithy.api#documentation": "<p>Specify the document format for the request. The document format can be JSON, YAML, or TEXT.\n JSON is the default format.</p>"
}
},
"TargetType": {
"target": "com.amazonaws.ssm#TargetType",
"traits": {
"smithy.api#documentation": "<p>Specify a target type to define the kinds of resources the document can run on. For example,\n to run a document on EC2 instances, specify the following value: /AWS::EC2::Instance. If you\n specify a value of '/' the document can run on all types of resources. If you don't specify a\n value, the document can't run on any resources. For a list of valid resource types, see <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\">AWS resource and property types\n reference</a> in the <i>AWS CloudFormation User Guide</i>. </p>"
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>Optional metadata that you assign to a resource. Tags enable you to categorize a resource in\n different ways, such as by purpose, owner, or environment. For example, you might want to tag an\n SSM document to identify the types of targets or the environment where it will run. In this case,\n you could specify the following key name/value pairs:</p>\n <ul>\n <li>\n <p>\n <code>Key=OS,Value=Windows</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=Environment,Value=Production</code>\n </p>\n </li>\n </ul>\n <note>\n <p>To add tags to an existing SSM document, use the <a>AddTagsToResource</a>\n action.</p>\n </note>"
}
}
}
},
"com.amazonaws.ssm#CreateDocumentResult": {
"type": "structure",
"members": {
"DocumentDescription": {
"target": "com.amazonaws.ssm#DocumentDescription",
"traits": {
"smithy.api#documentation": "<p>Information about the Systems Manager document.</p>"
}
}
}
},
"com.amazonaws.ssm#CreateMaintenanceWindow": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CreateMaintenanceWindowRequest"
},
"output": {
"target": "com.amazonaws.ssm#CreateMaintenanceWindowResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#IdempotentParameterMismatch"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ResourceLimitExceededException"
}
],
"traits": {
"smithy.api#documentation": "<p>Creates a new maintenance window.</p>\n <note>\n <p>The value you specify for <code>Duration</code> determines the specific end time for the\n maintenance window based on the time it begins. No maintenance window tasks are permitted to\n start after the resulting endtime minus the number of hours you specify for <code>Cutoff</code>.\n For example, if the maintenance window starts at 3 PM, the duration is three hours, and the\n value you specify for <code>Cutoff</code> is one hour, no maintenance window tasks can start\n after 5 PM.</p>\n </note>"
}
},
"com.amazonaws.ssm#CreateMaintenanceWindowRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The name of the maintenance window.</p>",
"smithy.api#required": {}
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>An optional description for the maintenance window. We recommend specifying a description to\n help you organize your maintenance windows. </p>"
}
},
"StartDate": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, for when you want the maintenance window to\n become active. StartDate allows you to delay activation of the maintenance window until the\n specified future date.</p>"
}
},
"EndDate": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, for when you want the maintenance window to\n become inactive. EndDate allows you to set a date and time in the future when the maintenance\n window will no longer run.</p>"
}
},
"Schedule": {
"target": "com.amazonaws.ssm#MaintenanceWindowSchedule",
"traits": {
"smithy.api#documentation": "<p>The schedule of the maintenance window in the form of a cron or rate expression.</p>",
"smithy.api#required": {}
}
},
"ScheduleTimezone": {
"target": "com.amazonaws.ssm#MaintenanceWindowTimezone",
"traits": {
"smithy.api#documentation": "<p>The time zone that the scheduled maintenance window executions are based on, in Internet\n Assigned Numbers Authority (IANA) format. For example: \"America/Los_Angeles\", \"UTC\", or\n \"Asia/Seoul\". For more information, see the <a href=\"https://www.iana.org/time-zones\">Time\n Zone Database</a> on the IANA website.</p>"
}
},
"ScheduleOffset": {
"target": "com.amazonaws.ssm#MaintenanceWindowOffset",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of days to wait after the date and time specified by a CRON expression before\n running the maintenance window.</p>\n <p>For example, the following cron expression schedules a maintenance window to run on the\n third Tuesday of every month at 11:30 PM.</p>\n <p>\n <code>cron(30 23 ? * TUE#3 *)</code>\n </p>\n <p>If the schedule offset is <code>2</code>, the maintenance window won't run until two days\n later.</p>"
}
},
"Duration": {
"target": "com.amazonaws.ssm#MaintenanceWindowDurationHours",
"traits": {
"smithy.api#documentation": "<p>The duration of the maintenance window in hours.</p>",
"smithy.api#required": {}
}
},
"Cutoff": {
"target": "com.amazonaws.ssm#MaintenanceWindowCutoff",
"traits": {
"smithy.api#documentation": "<p>The number of hours before the end of the maintenance window that Systems Manager stops scheduling new\n tasks for execution.</p>",
"smithy.api#required": {}
}
},
"AllowUnassociatedTargets": {
"target": "com.amazonaws.ssm#MaintenanceWindowAllowUnassociatedTargets",
"traits": {
"smithy.api#documentation": "<p>Enables a maintenance window task to run on managed instances, even if you have not\n registered those instances as targets. If enabled, then you must specify the unregistered\n instances (by instance ID) when you register a task with the maintenance window.</p>\n <p>If you don't enable this option, then you must specify previously-registered targets when\n you register a task with the maintenance window.</p>",
"smithy.api#required": {}
}
},
"ClientToken": {
"target": "com.amazonaws.ssm#ClientToken",
"traits": {
"smithy.api#documentation": "<p>User-provided idempotency token.</p>",
"smithy.api#idempotencyToken": {}
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>Optional metadata that you assign to a resource. Tags enable you to categorize a resource in\n different ways, such as by purpose, owner, or environment. For example, you might want to tag a\n maintenance window to identify the type of tasks it will run, the types of targets, and the\n environment it will run in. In this case, you could specify the following key name/value\n pairs:</p>\n <ul>\n <li>\n <p>\n <code>Key=TaskType,Value=AgentUpdate</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=OS,Value=Windows</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=Environment,Value=Production</code>\n </p>\n </li>\n </ul>\n <note>\n <p>To add tags to an existing maintenance window, use the <a>AddTagsToResource</a>\n action.</p>\n </note>"
}
}
}
},
"com.amazonaws.ssm#CreateMaintenanceWindowResult": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the created maintenance window.</p>"
}
}
}
},
"com.amazonaws.ssm#CreateOpsItem": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CreateOpsItemRequest"
},
"output": {
"target": "com.amazonaws.ssm#CreateOpsItemResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsItemAlreadyExistsException"
},
{
"target": "com.amazonaws.ssm#OpsItemInvalidParameterException"
},
{
"target": "com.amazonaws.ssm#OpsItemLimitExceededException"
}
],
"traits": {
"smithy.api#documentation": "<p>Creates a new OpsItem. You must have permission in AWS Identity and Access Management (IAM)\n to create a new OpsItem. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html\">Getting started with\n OpsCenter</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n <p>Operations engineers and IT professionals use OpsCenter to view, investigate, and remediate\n operational issues impacting the performance and health of their AWS resources. For more\n information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html\">AWS Systems Manager OpsCenter</a> in the\n <i>AWS Systems Manager User Guide</i>. </p>"
}
},
"com.amazonaws.ssm#CreateOpsItemRequest": {
"type": "structure",
"members": {
"Description": {
"target": "com.amazonaws.ssm#OpsItemDescription",
"traits": {
"smithy.api#documentation": "<p>Information about the OpsItem. </p>",
"smithy.api#required": {}
}
},
"OpsItemType": {
"target": "com.amazonaws.ssm#OpsItemType",
"traits": {
"smithy.api#documentation": "<p>The type of OpsItem to create. Currently, the only valid values are\n <code>/aws/changerequest</code> and <code>/aws/issue</code>.</p>"
}
},
"OperationalData": {
"target": "com.amazonaws.ssm#OpsItemOperationalData",
"traits": {
"smithy.api#documentation": "<p>Operational data is custom data that provides useful reference details about the OpsItem.\n For example, you can specify log files, error strings, license keys, troubleshooting tips, or\n other relevant data. You enter operational data as key-value pairs. The key has a maximum length\n of 128 characters. The value has a maximum size of 20 KB.</p>\n <important>\n <p>Operational data keys <i>can't</i> begin with the following: amazon, aws,\n amzn, ssm, /amazon, /aws, /amzn, /ssm.</p>\n </important>\n <p>You can choose to make the data searchable by other users in the account or you can restrict\n search access. Searchable data means that all users with access to the OpsItem Overview page (as\n provided by the <a>DescribeOpsItems</a> API action) can view and search on the\n specified data. Operational data that is not searchable is only viewable by users who have access\n to the OpsItem (as provided by the <a>GetOpsItem</a> API action).</p>\n <p>Use the <code>/aws/resources</code> key in OperationalData to specify a related resource in\n the request. Use the <code>/aws/automations</code> key in OperationalData to associate an\n Automation runbook with the OpsItem. To view AWS CLI example commands that use these keys, see\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems\">Creating OpsItems manually</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"Notifications": {
"target": "com.amazonaws.ssm#OpsItemNotifications",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an SNS topic where notifications are sent when this\n OpsItem is edited or changed.</p>"
}
},
"Priority": {
"target": "com.amazonaws.ssm#OpsItemPriority",
"traits": {
"smithy.api#documentation": "<p>The importance of this OpsItem in relation to other OpsItems in the system.</p>"
}
},
"RelatedOpsItems": {
"target": "com.amazonaws.ssm#RelatedOpsItems",
"traits": {
"smithy.api#documentation": "<p>One or more OpsItems that share something in common with the current OpsItems. For example,\n related OpsItems can include OpsItems with similar error messages, impacted resources, or\n statuses for the impacted resource.</p>"
}
},
"Source": {
"target": "com.amazonaws.ssm#OpsItemSource",
"traits": {
"smithy.api#documentation": "<p>The origin of the OpsItem, such as Amazon EC2 or Systems Manager.</p>\n <note>\n <p>The source name can't contain the following strings: aws, amazon, and amzn. </p>\n </note>",
"smithy.api#required": {}
}
},
"Title": {
"target": "com.amazonaws.ssm#OpsItemTitle",
"traits": {
"smithy.api#documentation": "<p>A short heading that describes the nature of the OpsItem and the impacted resource.</p>",
"smithy.api#required": {}
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>Optional metadata that you assign to a resource. You can restrict access to OpsItems by\n using an inline IAM policy that specifies tags. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html#OpsCenter-getting-started-user-permissions\">Getting started with OpsCenter</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n <p>Tags use a key-value pair. For example:</p>\n <p>\n <code>Key=Department,Value=Finance</code>\n </p>\n <note>\n <p>To add tags to an existing OpsItem, use the <a>AddTagsToResource</a>\n action.</p>\n </note>"
}
},
"Category": {
"target": "com.amazonaws.ssm#OpsItemCategory",
"traits": {
"smithy.api#documentation": "<p>Specify a category to assign to an OpsItem. </p>"
}
},
"Severity": {
"target": "com.amazonaws.ssm#OpsItemSeverity",
"traits": {
"smithy.api#documentation": "<p>Specify a severity to assign to an OpsItem.</p>"
}
},
"ActualStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time a runbook workflow started. Currently reported only for the OpsItem type\n <code>/aws/changerequest</code>.</p>"
}
},
"ActualEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time a runbook workflow ended. Currently reported only for the OpsItem type\n <code>/aws/changerequest</code>.</p>"
}
},
"PlannedStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time specified in a change request for a runbook workflow to start. Currently supported\n only for the OpsItem type <code>/aws/changerequest</code>.</p>"
}
},
"PlannedEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time specified in a change request for a runbook workflow to end. Currently supported\n only for the OpsItem type <code>/aws/changerequest</code>.</p>"
}
}
}
},
"com.amazonaws.ssm#CreateOpsItemResponse": {
"type": "structure",
"members": {
"OpsItemId": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ID of the OpsItem.</p>"
}
}
}
},
"com.amazonaws.ssm#CreateOpsMetadata": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CreateOpsMetadataRequest"
},
"output": {
"target": "com.amazonaws.ssm#CreateOpsMetadataResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsMetadataAlreadyExistsException"
},
{
"target": "com.amazonaws.ssm#OpsMetadataInvalidArgumentException"
},
{
"target": "com.amazonaws.ssm#OpsMetadataLimitExceededException"
},
{
"target": "com.amazonaws.ssm#OpsMetadataTooManyUpdatesException"
}
],
"traits": {
"smithy.api#documentation": "<p>If you create a new application in Application Manager, Systems Manager calls this API action to specify\n information about the new application, including the application type.</p>"
}
},
"com.amazonaws.ssm#CreateOpsMetadataRequest": {
"type": "structure",
"members": {
"ResourceId": {
"target": "com.amazonaws.ssm#OpsMetadataResourceId",
"traits": {
"smithy.api#documentation": "<p>A resource ID for a new Application Manager application.</p>",
"smithy.api#required": {}
}
},
"Metadata": {
"target": "com.amazonaws.ssm#MetadataMap",
"traits": {
"smithy.api#documentation": "<p>Metadata for a new Application Manager application. </p>"
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>Optional metadata that you assign to a resource. You can specify a maximum of five tags for\n an OpsMetadata object. Tags enable you to categorize a resource in different ways, such as by\n purpose, owner, or environment. For example, you might want to tag an OpsMetadata object to\n identify an environment or target AWS Region. In this case, you could specify the following\n key-value pairs:</p>\n <ul>\n <li>\n <p>\n <code>Key=Environment,Value=Production</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=Region,Value=us-east-2</code>\n </p>\n </li>\n </ul>"
}
}
}
},
"com.amazonaws.ssm#CreateOpsMetadataResult": {
"type": "structure",
"members": {
"OpsMetadataArn": {
"target": "com.amazonaws.ssm#OpsMetadataArn",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the OpsMetadata Object or blob created by the call.</p>"
}
}
}
},
"com.amazonaws.ssm#CreatePatchBaseline": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CreatePatchBaselineRequest"
},
"output": {
"target": "com.amazonaws.ssm#CreatePatchBaselineResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#IdempotentParameterMismatch"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ResourceLimitExceededException"
}
],
"traits": {
"smithy.api#documentation": "<p>Creates a patch baseline.</p>\n <note>\n <p>For information about valid key and value pairs in <code>PatchFilters</code> for each\n supported operating system type, see <a href=\"http://docs.aws.amazon.com/systems-manager/latest/APIReference/API_PatchFilter.html\">PatchFilter</a>.</p>\n </note>"
}
},
"com.amazonaws.ssm#CreatePatchBaselineRequest": {
"type": "structure",
"members": {
"OperatingSystem": {
"target": "com.amazonaws.ssm#OperatingSystem",
"traits": {
"smithy.api#documentation": "<p>Defines the operating system the patch baseline applies to. The Default value is\n WINDOWS.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#BaselineName",
"traits": {
"smithy.api#documentation": "<p>The name of the patch baseline.</p>",
"smithy.api#required": {}
}
},
"GlobalFilters": {
"target": "com.amazonaws.ssm#PatchFilterGroup",
"traits": {
"smithy.api#documentation": "<p>A set of global filters used to include patches in the baseline.</p>"
}
},
"ApprovalRules": {
"target": "com.amazonaws.ssm#PatchRuleGroup",
"traits": {
"smithy.api#documentation": "<p>A set of rules used to include patches in the baseline.</p>"
}
},
"ApprovedPatches": {
"target": "com.amazonaws.ssm#PatchIdList",
"traits": {
"smithy.api#documentation": "<p>A list of explicitly approved patches for the baseline.</p>\n <p>For information about accepted formats for lists of approved patches and rejected patches,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-approved-rejected-package-name-formats.html\">About\n package name formats for approved and rejected patch lists</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"ApprovedPatchesComplianceLevel": {
"target": "com.amazonaws.ssm#PatchComplianceLevel",
"traits": {
"smithy.api#documentation": "<p>Defines the compliance level for approved patches. When an approved patch is reported as\n missing, this value describes the severity of the compliance violation. The default value is\n UNSPECIFIED.</p>"
}
},
"ApprovedPatchesEnableNonSecurity": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Indicates whether the list of approved patches includes non-security updates that should be\n applied to the instances. The default value is 'false'. Applies to Linux instances only.</p>"
}
},
"RejectedPatches": {
"target": "com.amazonaws.ssm#PatchIdList",
"traits": {
"smithy.api#documentation": "<p>A list of explicitly rejected patches for the baseline.</p>\n <p>For information about accepted formats for lists of approved patches and rejected patches,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-approved-rejected-package-name-formats.html\">About\n package name formats for approved and rejected patch lists</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"RejectedPatchesAction": {
"target": "com.amazonaws.ssm#PatchAction",
"traits": {
"smithy.api#documentation": "<p>The action for Patch Manager to take on patches included in the RejectedPackages\n list.</p>\n <ul>\n <li>\n <p>\n <b>ALLOW_AS_DEPENDENCY</b>: A package in the Rejected patches\n list is installed only if it is a dependency of another package. It is considered compliant\n with the patch baseline, and its status is reported as <i>InstalledOther</i>.\n This is the default action if no option is specified.</p>\n </li>\n <li>\n <p>\n <b>BLOCK</b>: Packages in the RejectedPatches list, and packages\n that include them as dependencies, are not installed under any circumstances. If a package was\n installed before it was added to the Rejected patches list, it is considered non-compliant with\n the patch baseline, and its status is reported as\n <i>InstalledRejected</i>.</p>\n </li>\n </ul>"
}
},
"Description": {
"target": "com.amazonaws.ssm#BaselineDescription",
"traits": {
"smithy.api#documentation": "<p>A description of the patch baseline.</p>"
}
},
"Sources": {
"target": "com.amazonaws.ssm#PatchSourceList",
"traits": {
"smithy.api#documentation": "<p>Information about the patches to use to update the instances, including target operating\n systems and source repositories. Applies to Linux instances only.</p>"
}
},
"ClientToken": {
"target": "com.amazonaws.ssm#ClientToken",
"traits": {
"smithy.api#documentation": "<p>User-provided idempotency token.</p>",
"smithy.api#idempotencyToken": {}
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>Optional metadata that you assign to a resource. Tags enable you to categorize a resource in\n different ways, such as by purpose, owner, or environment. For example, you might want to tag a\n patch baseline to identify the severity level of patches it specifies and the operating system\n family it applies to. In this case, you could specify the following key name/value pairs:</p>\n <ul>\n <li>\n <p>\n <code>Key=PatchSeverity,Value=Critical</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=OS,Value=Windows</code>\n </p>\n </li>\n </ul>\n <note>\n <p>To add tags to an existing patch baseline, use the <a>AddTagsToResource</a>\n action.</p>\n </note>"
}
}
}
},
"com.amazonaws.ssm#CreatePatchBaselineResult": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the created patch baseline.</p>"
}
}
}
},
"com.amazonaws.ssm#CreateResourceDataSync": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#CreateResourceDataSyncRequest"
},
"output": {
"target": "com.amazonaws.ssm#CreateResourceDataSyncResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ResourceDataSyncAlreadyExistsException"
},
{
"target": "com.amazonaws.ssm#ResourceDataSyncCountExceededException"
},
{
"target": "com.amazonaws.ssm#ResourceDataSyncInvalidConfigurationException"
}
],
"traits": {
"smithy.api#documentation": "<p>A resource data sync helps you view data from multiple sources in a single location. Systems\n Manager offers two types of resource data sync: <code>SyncToDestination</code> and\n <code>SyncFromSource</code>.</p>\n <p>You can configure Systems Manager Inventory to use the <code>SyncToDestination</code> type to\n synchronize Inventory data from multiple AWS Regions to a single S3 bucket. For more information,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-datasync.html\">Configuring Resource Data\n Sync for Inventory</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n <p>You can configure Systems Manager Explorer to use the <code>SyncFromSource</code> type to synchronize\n operational work items (OpsItems) and operational data (OpsData) from multiple AWS Regions to a\n single S3 bucket. This type can synchronize OpsItems and OpsData from multiple AWS accounts and\n Regions or <code>EntireOrganization</code> by using AWS Organizations. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/Explorer-resource-data-sync.html\">Setting up Systems Manager Explorer to display data from multiple accounts and Regions</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>\n <p>A resource data sync is an asynchronous operation that returns immediately. After a\n successful initial sync is completed, the system continuously syncs data. To check the status of\n a sync, use the <a>ListResourceDataSync</a>.</p>\n <note>\n <p>By default, data is not encrypted in Amazon S3. We strongly recommend that you enable encryption\n in Amazon S3 to ensure secure data storage. We also recommend that you secure access to the Amazon S3\n bucket by creating a restrictive bucket policy. </p>\n </note>"
}
},
"com.amazonaws.ssm#CreateResourceDataSyncRequest": {
"type": "structure",
"members": {
"SyncName": {
"target": "com.amazonaws.ssm#ResourceDataSyncName",
"traits": {
"smithy.api#documentation": "<p>A name for the configuration.</p>",
"smithy.api#required": {}
}
},
"S3Destination": {
"target": "com.amazonaws.ssm#ResourceDataSyncS3Destination",
"traits": {
"smithy.api#documentation": "<p>Amazon S3 configuration details for the sync. This parameter is required if the\n <code>SyncType</code> value is SyncToDestination.</p>"
}
},
"SyncType": {
"target": "com.amazonaws.ssm#ResourceDataSyncType",
"traits": {
"smithy.api#documentation": "<p>Specify <code>SyncToDestination</code> to create a resource data sync that synchronizes data\n to an S3 bucket for Inventory. If you specify <code>SyncToDestination</code>, you must provide a\n value for <code>S3Destination</code>. Specify <code>SyncFromSource</code> to synchronize data\n from a single account and multiple Regions, or multiple AWS accounts and Regions, as listed in\n AWS Organizations for Explorer. If you specify <code>SyncFromSource</code>, you must provide a value for\n <code>SyncSource</code>. The default value is <code>SyncToDestination</code>.</p>"
}
},
"SyncSource": {
"target": "com.amazonaws.ssm#ResourceDataSyncSource",
"traits": {
"smithy.api#documentation": "<p>Specify information about the data sources to synchronize. This parameter is required if the\n <code>SyncType</code> value is SyncFromSource.</p>"
}
}
}
},
"com.amazonaws.ssm#CreateResourceDataSyncResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#CreatedDate": {
"type": "timestamp"
},
"com.amazonaws.ssm#CustomSchemaCountLimitExceededException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You have exceeded the limit for custom schemas. Delete one or more custom schemas and try\n again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#DateTime": {
"type": "timestamp"
},
"com.amazonaws.ssm#DefaultBaseline": {
"type": "boolean"
},
"com.amazonaws.ssm#DefaultInstanceName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 256
},
"smithy.api#pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
}
},
"com.amazonaws.ssm#DeleteActivation": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeleteActivationRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeleteActivationResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidActivation"
},
{
"target": "com.amazonaws.ssm#InvalidActivationId"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
}
],
"traits": {
"smithy.api#documentation": "<p>Deletes an activation. You are not required to delete an activation. If you delete an\n activation, you can no longer use it to register additional managed instances. Deleting an\n activation does not de-register managed instances. You must manually de-register managed\n instances.</p>"
}
},
"com.amazonaws.ssm#DeleteActivationRequest": {
"type": "structure",
"members": {
"ActivationId": {
"target": "com.amazonaws.ssm#ActivationId",
"traits": {
"smithy.api#documentation": "<p>The ID of the activation that you want to delete.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DeleteActivationResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#DeleteAssociation": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeleteAssociationRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeleteAssociationResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociationDoesNotExist"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
}
],
"traits": {
"smithy.api#documentation": "<p>Disassociates the specified Systems Manager document from the specified instance.</p>\n <p>When you disassociate a document from an instance, it does not change the configuration of\n the instance. To change the configuration state of an instance after you disassociate a document,\n you must create a new document with the desired configuration and associate it with the\n instance.</p>"
}
},
"com.amazonaws.ssm#DeleteAssociationRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance.</p>"
}
},
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID that you want to delete.</p>"
}
}
}
},
"com.amazonaws.ssm#DeleteAssociationResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#DeleteDocument": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeleteDocumentRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeleteDocumentResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociatedInstances"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentOperation"
}
],
"traits": {
"smithy.api#documentation": "<p>Deletes the Systems Manager document and all instance associations to the document.</p>\n <p>Before you delete the document, we recommend that you use <a>DeleteAssociation</a> to disassociate all instances that are associated with the document.</p>"
}
},
"com.amazonaws.ssm#DeleteDocumentRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the document.</p>",
"smithy.api#required": {}
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the document that you want to delete. If not provided, all versions of the\n document are deleted.</p>"
}
},
"VersionName": {
"target": "com.amazonaws.ssm#DocumentVersionName",
"traits": {
"smithy.api#documentation": "<p>The version name of the document that you want to delete. If not provided, all versions of\n the document are deleted.</p>"
}
},
"Force": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#documentation": "<p>Some SSM document types require that you specify a <code>Force</code> flag before you can\n delete the document. For example, you must specify a <code>Force</code> flag to delete a document\n of type <code>ApplicationConfigurationSchema</code>. You can restrict access to the\n <code>Force</code> flag in an AWS Identity and Access Management (IAM) policy.</p>"
}
}
}
},
"com.amazonaws.ssm#DeleteDocumentResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#DeleteInventory": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeleteInventoryRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeleteInventoryResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDeleteInventoryParametersException"
},
{
"target": "com.amazonaws.ssm#InvalidInventoryRequestException"
},
{
"target": "com.amazonaws.ssm#InvalidOptionException"
},
{
"target": "com.amazonaws.ssm#InvalidTypeNameException"
}
],
"traits": {
"smithy.api#documentation": "<p>Delete a custom inventory type or the data associated with a custom Inventory type. Deleting\n a custom inventory type is also referred to as deleting a custom inventory schema.</p>"
}
},
"com.amazonaws.ssm#DeleteInventoryRequest": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName",
"traits": {
"smithy.api#documentation": "<p>The name of the custom inventory type for which you want to delete either all previously\n collected data or the inventory type itself. </p>",
"smithy.api#required": {}
}
},
"SchemaDeleteOption": {
"target": "com.amazonaws.ssm#InventorySchemaDeleteOption",
"traits": {
"smithy.api#documentation": "<p>Use the <code>SchemaDeleteOption</code> to delete a custom inventory type (schema). If you\n don't choose this option, the system only deletes existing inventory data associated with the\n custom inventory type. Choose one of the following options:</p>\n <p>DisableSchema: If you choose this option, the system ignores all inventory data for the\n specified version, and any earlier versions. To enable this schema again, you must call the\n <code>PutInventory</code> action for a version greater than the disabled version.</p>\n <p>DeleteSchema: This option deletes the specified custom type from the Inventory service. You\n can recreate the schema later, if you want.</p>"
}
},
"DryRun": {
"target": "com.amazonaws.ssm#DryRun",
"traits": {
"smithy.api#documentation": "<p>Use this option to view a summary of the deletion request without deleting any data or the\n data type. This option is useful when you only want to understand what will be deleted. Once you\n validate that the data to be deleted is what you intend to delete, you can run the same command\n without specifying the <code>DryRun</code> option.</p>"
}
},
"ClientToken": {
"target": "com.amazonaws.ssm#UUID",
"traits": {
"smithy.api#documentation": "<p>User-provided idempotency token.</p>",
"smithy.api#idempotencyToken": {}
}
}
}
},
"com.amazonaws.ssm#DeleteInventoryResult": {
"type": "structure",
"members": {
"DeletionId": {
"target": "com.amazonaws.ssm#UUID",
"traits": {
"smithy.api#documentation": "<p>Every <code>DeleteInventory</code> action is assigned a unique ID. This option returns a\n unique ID. You can use this ID to query the status of a delete operation. This option is useful\n for ensuring that a delete operation has completed before you begin other actions. </p>"
}
},
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName",
"traits": {
"smithy.api#documentation": "<p>The name of the inventory data type specified in the request.</p>"
}
},
"DeletionSummary": {
"target": "com.amazonaws.ssm#InventoryDeletionSummary",
"traits": {
"smithy.api#documentation": "<p>A summary of the delete operation. For more information about this summary, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-custom.html#sysman-inventory-delete-summary\">Deleting custom inventory</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
}
}
},
"com.amazonaws.ssm#DeleteMaintenanceWindow": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeleteMaintenanceWindowRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeleteMaintenanceWindowResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Deletes a maintenance window.</p>"
}
},
"com.amazonaws.ssm#DeleteMaintenanceWindowRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window to delete.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DeleteMaintenanceWindowResult": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the deleted maintenance window.</p>"
}
}
}
},
"com.amazonaws.ssm#DeleteOpsMetadata": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeleteOpsMetadataRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeleteOpsMetadataResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsMetadataInvalidArgumentException"
},
{
"target": "com.amazonaws.ssm#OpsMetadataNotFoundException"
}
],
"traits": {
"smithy.api#documentation": "<p>Delete OpsMetadata related to an application.</p>"
}
},
"com.amazonaws.ssm#DeleteOpsMetadataRequest": {
"type": "structure",
"members": {
"OpsMetadataArn": {
"target": "com.amazonaws.ssm#OpsMetadataArn",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an OpsMetadata Object to delete.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DeleteOpsMetadataResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#DeleteParameter": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeleteParameterRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeleteParameterResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ParameterNotFound"
}
],
"traits": {
"smithy.api#documentation": "<p>Delete a parameter from the system.</p>"
}
},
"com.amazonaws.ssm#DeleteParameterRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#PSParameterName",
"traits": {
"smithy.api#documentation": "<p>The name of the parameter to delete.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DeleteParameterResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#DeleteParameters": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeleteParametersRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeleteParametersResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Delete a list of parameters.</p>"
}
},
"com.amazonaws.ssm#DeleteParametersRequest": {
"type": "structure",
"members": {
"Names": {
"target": "com.amazonaws.ssm#ParameterNameList",
"traits": {
"smithy.api#documentation": "<p>The names of the parameters to delete.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DeleteParametersResult": {
"type": "structure",
"members": {
"DeletedParameters": {
"target": "com.amazonaws.ssm#ParameterNameList",
"traits": {
"smithy.api#documentation": "<p>The names of the deleted parameters.</p>"
}
},
"InvalidParameters": {
"target": "com.amazonaws.ssm#ParameterNameList",
"traits": {
"smithy.api#documentation": "<p>The names of parameters that weren't deleted because the parameters are not valid.</p>"
}
}
}
},
"com.amazonaws.ssm#DeletePatchBaseline": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeletePatchBaselineRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeletePatchBaselineResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ResourceInUseException"
}
],
"traits": {
"smithy.api#documentation": "<p>Deletes a patch baseline.</p>"
}
},
"com.amazonaws.ssm#DeletePatchBaselineRequest": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline to delete.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DeletePatchBaselineResult": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the deleted patch baseline.</p>"
}
}
}
},
"com.amazonaws.ssm#DeleteResourceDataSync": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeleteResourceDataSyncRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeleteResourceDataSyncResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ResourceDataSyncInvalidConfigurationException"
},
{
"target": "com.amazonaws.ssm#ResourceDataSyncNotFoundException"
}
],
"traits": {
"smithy.api#documentation": "<p>Deletes a Resource Data Sync configuration. After the configuration is deleted, changes to\n data on managed instances are no longer synced to or from the target. Deleting a sync\n configuration does not delete data.</p>"
}
},
"com.amazonaws.ssm#DeleteResourceDataSyncRequest": {
"type": "structure",
"members": {
"SyncName": {
"target": "com.amazonaws.ssm#ResourceDataSyncName",
"traits": {
"smithy.api#documentation": "<p>The name of the configuration to delete.</p>",
"smithy.api#required": {}
}
},
"SyncType": {
"target": "com.amazonaws.ssm#ResourceDataSyncType",
"traits": {
"smithy.api#documentation": "<p>Specify the type of resource data sync to delete.</p>"
}
}
}
},
"com.amazonaws.ssm#DeleteResourceDataSyncResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#DeliveryTimedOutCount": {
"type": "integer"
},
"com.amazonaws.ssm#DeregisterManagedInstance": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeregisterManagedInstanceRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeregisterManagedInstanceResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
}
],
"traits": {
"smithy.api#documentation": "<p>Removes the server or virtual machine from the list of registered servers. You can\n reregister the instance again at any time. If you don't plan to use Run Command on the server, we\n suggest uninstalling SSM Agent first.</p>"
}
},
"com.amazonaws.ssm#DeregisterManagedInstanceRequest": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#ManagedInstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID assigned to the managed instance when you registered it using the activation process.\n </p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DeregisterManagedInstanceResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#DeregisterPatchBaselineForPatchGroup": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeregisterPatchBaselineForPatchGroupRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeregisterPatchBaselineForPatchGroupResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidResourceId"
}
],
"traits": {
"smithy.api#documentation": "<p>Removes a patch group from a patch baseline.</p>"
}
},
"com.amazonaws.ssm#DeregisterPatchBaselineForPatchGroupRequest": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline to deregister the patch group from.</p>",
"smithy.api#required": {}
}
},
"PatchGroup": {
"target": "com.amazonaws.ssm#PatchGroup",
"traits": {
"smithy.api#documentation": "<p>The name of the patch group that should be deregistered from the patch baseline.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DeregisterPatchBaselineForPatchGroupResult": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline the patch group was deregistered from.</p>"
}
},
"PatchGroup": {
"target": "com.amazonaws.ssm#PatchGroup",
"traits": {
"smithy.api#documentation": "<p>The name of the patch group deregistered from the patch baseline.</p>"
}
}
}
},
"com.amazonaws.ssm#DeregisterTargetFromMaintenanceWindow": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeregisterTargetFromMaintenanceWindowRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeregisterTargetFromMaintenanceWindowResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#TargetInUseException"
}
],
"traits": {
"smithy.api#documentation": "<p>Removes a target from a maintenance window.</p>"
}
},
"com.amazonaws.ssm#DeregisterTargetFromMaintenanceWindowRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window the target should be removed from.</p>",
"smithy.api#required": {}
}
},
"WindowTargetId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTargetId",
"traits": {
"smithy.api#documentation": "<p>The ID of the target definition to remove.</p>",
"smithy.api#required": {}
}
},
"Safe": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The system checks if the target is being referenced by a task. If the target is being\n referenced, the system returns an error and does not deregister the target from the maintenance\n window.</p>"
}
}
}
},
"com.amazonaws.ssm#DeregisterTargetFromMaintenanceWindowResult": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window the target was removed from.</p>"
}
},
"WindowTargetId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTargetId",
"traits": {
"smithy.api#documentation": "<p>The ID of the removed target definition.</p>"
}
}
}
},
"com.amazonaws.ssm#DeregisterTaskFromMaintenanceWindow": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DeregisterTaskFromMaintenanceWindowRequest"
},
"output": {
"target": "com.amazonaws.ssm#DeregisterTaskFromMaintenanceWindowResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Removes a task from a maintenance window.</p>"
}
},
"com.amazonaws.ssm#DeregisterTaskFromMaintenanceWindowRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window the task should be removed from.</p>",
"smithy.api#required": {}
}
},
"WindowTaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskId",
"traits": {
"smithy.api#documentation": "<p>The ID of the task to remove from the maintenance window.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DeregisterTaskFromMaintenanceWindowResult": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window the task was removed from.</p>"
}
},
"WindowTaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskId",
"traits": {
"smithy.api#documentation": "<p>The ID of the task removed from the maintenance window.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeActivations": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeActivationsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeActivationsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilter"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Describes details about the activation, such as the date and time the activation was\n created, its expiration date, the IAM role assigned to the instances in the activation, and the\n number of instances registered by using this activation.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "ActivationList",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeActivationsFilter": {
"type": "structure",
"members": {
"FilterKey": {
"target": "com.amazonaws.ssm#DescribeActivationsFilterKeys",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>"
}
},
"FilterValues": {
"target": "com.amazonaws.ssm#StringList",
"traits": {
"smithy.api#documentation": "<p>The filter values.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Filter for the DescribeActivation API.</p>"
}
},
"com.amazonaws.ssm#DescribeActivationsFilterKeys": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "ActivationIds",
"name": "ACTIVATION_IDS"
},
{
"value": "DefaultInstanceName",
"name": "DEFAULT_INSTANCE_NAME"
},
{
"value": "IamRole",
"name": "IAM_ROLE"
}
]
}
},
"com.amazonaws.ssm#DescribeActivationsFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#DescribeActivationsFilter"
}
},
"com.amazonaws.ssm#DescribeActivationsRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#DescribeActivationsFilterList",
"traits": {
"smithy.api#documentation": "<p>A filter to view information about your activations.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
}
}
},
"com.amazonaws.ssm#DescribeActivationsResult": {
"type": "structure",
"members": {
"ActivationList": {
"target": "com.amazonaws.ssm#ActivationList",
"traits": {
"smithy.api#documentation": "<p>A list of activations for your AWS account.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results. </p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAssociation": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeAssociationRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeAssociationResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociationDoesNotExist"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidAssociationVersion"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
}
],
"traits": {
"smithy.api#documentation": "<p>Describes the association for the specified target or instance. If you created the\n association by using the <code>Targets</code> parameter, then you must retrieve the association\n by using the association ID. If you created the association by specifying an instance ID and a\n Systems Manager document, then you retrieve the association by specifying the document name and the\n instance ID. </p>"
}
},
"com.amazonaws.ssm#DescribeAssociationExecutionTargets": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeAssociationExecutionTargetsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeAssociationExecutionTargetsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociationDoesNotExist"
},
{
"target": "com.amazonaws.ssm#AssociationExecutionDoesNotExist"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Use this API action to view information about a specific execution of a specific\n association.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "AssociationExecutionTargets",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeAssociationExecutionTargetsRequest": {
"type": "structure",
"members": {
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID that includes the execution for which you want to view details.</p>",
"smithy.api#required": {}
}
},
"ExecutionId": {
"target": "com.amazonaws.ssm#AssociationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The execution ID for which you want to view details.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#AssociationExecutionTargetsFilterList",
"traits": {
"smithy.api#documentation": "<p>Filters for the request. You can specify the following filters and values.</p>\n <p>Status (EQUAL)</p>\n <p>ResourceId (EQUAL)</p>\n <p>ResourceType (EQUAL)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAssociationExecutionTargetsResult": {
"type": "structure",
"members": {
"AssociationExecutionTargets": {
"target": "com.amazonaws.ssm#AssociationExecutionTargetsList",
"traits": {
"smithy.api#documentation": "<p>Information about the execution.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAssociationExecutions": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeAssociationExecutionsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeAssociationExecutionsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociationDoesNotExist"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Use this API action to view all executions for a specific association ID. </p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "AssociationExecutions",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeAssociationExecutionsRequest": {
"type": "structure",
"members": {
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID for which you want to view execution history details.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#AssociationExecutionFilterList",
"traits": {
"smithy.api#documentation": "<p>Filters for the request. You can specify the following filters and values.</p>\n <p>ExecutionId (EQUAL)</p>\n <p>Status (EQUAL)</p>\n <p>CreatedTime (EQUAL, GREATER_THAN, LESS_THAN)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAssociationExecutionsResult": {
"type": "structure",
"members": {
"AssociationExecutions": {
"target": "com.amazonaws.ssm#AssociationExecutionsList",
"traits": {
"smithy.api#documentation": "<p>A list of the executions for the specified association ID.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAssociationRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The instance ID.</p>"
}
},
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID for which you want information.</p>"
}
},
"AssociationVersion": {
"target": "com.amazonaws.ssm#AssociationVersion",
"traits": {
"smithy.api#documentation": "<p>Specify the association version to retrieve. To view the latest version, either specify\n <code>$LATEST</code> for this parameter, or omit this parameter. To view a list of all\n associations for an instance, use <a>ListAssociations</a>. To get a list of versions\n for a specific association, use <a>ListAssociationVersions</a>. </p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAssociationResult": {
"type": "structure",
"members": {
"AssociationDescription": {
"target": "com.amazonaws.ssm#AssociationDescription",
"traits": {
"smithy.api#documentation": "<p>Information about the association.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAutomationExecutions": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeAutomationExecutionsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeAutomationExecutionsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilterKey"
},
{
"target": "com.amazonaws.ssm#InvalidFilterValue"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Provides details about all active and terminated Automation executions.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "AutomationExecutionMetadataList",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeAutomationExecutionsRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#AutomationExecutionFilterList",
"traits": {
"smithy.api#documentation": "<p>Filters used to limit the scope of executions that are requested.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAutomationExecutionsResult": {
"type": "structure",
"members": {
"AutomationExecutionMetadataList": {
"target": "com.amazonaws.ssm#AutomationExecutionMetadataList",
"traits": {
"smithy.api#documentation": "<p>The list of details about each automation execution which has occurred which matches the\n filter specification, if any.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAutomationStepExecutions": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeAutomationStepExecutionsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeAutomationStepExecutionsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AutomationExecutionNotFoundException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilterKey"
},
{
"target": "com.amazonaws.ssm#InvalidFilterValue"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Information about all active and terminated step executions in an Automation\n workflow.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "StepExecutions",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeAutomationStepExecutionsRequest": {
"type": "structure",
"members": {
"AutomationExecutionId": {
"target": "com.amazonaws.ssm#AutomationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The Automation execution ID for which you want step execution descriptions.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#StepExecutionFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more filters to limit the number of step executions returned by the request.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"ReverseOrder": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Indicates whether to list step executions in reverse order by start time. The default value\n is 'false'.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAutomationStepExecutionsResult": {
"type": "structure",
"members": {
"StepExecutions": {
"target": "com.amazonaws.ssm#StepExecutionList",
"traits": {
"smithy.api#documentation": "<p>A list of details about the current state of all steps that make up an execution.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAvailablePatches": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeAvailablePatchesRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeAvailablePatchesResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists all patches eligible to be included in a patch baseline.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Patches",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeAvailablePatchesRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#PatchOrchestratorFilterList",
"traits": {
"smithy.api#documentation": "<p>Filters used to scope down the returned patches.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#PatchBaselineMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of patches to return (per page).</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeAvailablePatchesResult": {
"type": "structure",
"members": {
"Patches": {
"target": "com.amazonaws.ssm#PatchList",
"traits": {
"smithy.api#documentation": "<p>An array of patches. Each entry in the array is a patch structure.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeDocument": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeDocumentRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeDocumentResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentVersion"
}
],
"traits": {
"smithy.api#documentation": "<p>Describes the specified Systems Manager document.</p>"
}
},
"com.amazonaws.ssm#DescribeDocumentPermission": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeDocumentPermissionRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeDocumentPermissionResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentOperation"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
},
{
"target": "com.amazonaws.ssm#InvalidPermissionType"
}
],
"traits": {
"smithy.api#documentation": "<p>Describes the permissions for a Systems Manager document. If you created the document, you are the\n owner. If a document is shared, it can either be shared privately (by specifying a user's AWS\n account ID) or publicly (<i>All</i>). </p>"
}
},
"com.amazonaws.ssm#DescribeDocumentPermissionRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the document for which you are the owner.</p>",
"smithy.api#required": {}
}
},
"PermissionType": {
"target": "com.amazonaws.ssm#DocumentPermissionType",
"traits": {
"smithy.api#documentation": "<p>The permission type for the document. The permission type can be\n <i>Share</i>.</p>",
"smithy.api#required": {}
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#DocumentPermissionMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeDocumentPermissionResponse": {
"type": "structure",
"members": {
"AccountIds": {
"target": "com.amazonaws.ssm#AccountIdList",
"traits": {
"smithy.api#documentation": "<p>The account IDs that have permission to use this document. The ID can be either an AWS\n account or <i>All</i>.</p>"
}
},
"AccountSharingInfoList": {
"target": "com.amazonaws.ssm#AccountSharingInfoList",
"traits": {
"smithy.api#documentation": "<p>A list of AWS accounts where the current document is shared and the version shared with each\n account.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeDocumentRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document.</p>",
"smithy.api#required": {}
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version for which you want information. Can be a specific version or the\n default version.</p>"
}
},
"VersionName": {
"target": "com.amazonaws.ssm#DocumentVersionName",
"traits": {
"smithy.api#documentation": "<p>An optional field specifying the version of the artifact associated with the document. For\n example, \"Release 12, Update 6\". This value is unique across all versions of a document, and\n cannot be changed.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeDocumentResult": {
"type": "structure",
"members": {
"Document": {
"target": "com.amazonaws.ssm#DocumentDescription",
"traits": {
"smithy.api#documentation": "<p>Information about the Systems Manager document.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeEffectiveInstanceAssociations": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeEffectiveInstanceAssociationsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeEffectiveInstanceAssociationsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>All associations for the instance(s).</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Associations",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeEffectiveInstanceAssociationsRequest": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The instance ID for which you want to view all associations.</p>",
"smithy.api#required": {}
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#EffectiveInstanceAssociationMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeEffectiveInstanceAssociationsResult": {
"type": "structure",
"members": {
"Associations": {
"target": "com.amazonaws.ssm#InstanceAssociationList",
"traits": {
"smithy.api#documentation": "<p>The associations for the requested instance.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeEffectivePatchesForPatchBaseline": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeEffectivePatchesForPatchBaselineRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeEffectivePatchesForPatchBaselineResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidResourceId"
},
{
"target": "com.amazonaws.ssm#UnsupportedOperatingSystem"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the current effective patches (the patch and the approval state) for the specified\n patch baseline. Note that this API applies only to Windows patch baselines.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "EffectivePatches",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeEffectivePatchesForPatchBaselineRequest": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline to retrieve the effective patches for.</p>",
"smithy.api#required": {}
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#PatchBaselineMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of patches to return (per page).</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeEffectivePatchesForPatchBaselineResult": {
"type": "structure",
"members": {
"EffectivePatches": {
"target": "com.amazonaws.ssm#EffectivePatchList",
"traits": {
"smithy.api#documentation": "<p>An array of patches and patch status.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInstanceAssociationsStatus": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeInstanceAssociationsStatusRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeInstanceAssociationsStatusResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>The status of the associations for the instance(s).</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "InstanceAssociationStatusInfos",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeInstanceAssociationsStatusRequest": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The instance IDs for which you want association status information.</p>",
"smithy.api#required": {}
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInstanceAssociationsStatusResult": {
"type": "structure",
"members": {
"InstanceAssociationStatusInfos": {
"target": "com.amazonaws.ssm#InstanceAssociationStatusInfos",
"traits": {
"smithy.api#documentation": "<p>Status information about the association.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInstanceInformation": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeInstanceInformationRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeInstanceInformationResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilterKey"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceInformationFilterValue"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Describes one or more of your instances, including information about the operating system\n platform, the version of SSM Agent installed on the instance, instance status, and so on.</p>\n <p>If you specify one or more instance IDs, it returns information for those instances. If you\n do not specify instance IDs, it returns information for all your instances. If you specify an\n instance ID that is not valid or an instance that you do not own, you receive an error.</p>\n <note>\n <p>The IamRole field for this API action is the Amazon Identity and Access Management (IAM)\n role assigned to on-premises instances. This call does not return the IAM role for EC2\n instances.</p>\n </note>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "InstanceInformationList",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeInstanceInformationRequest": {
"type": "structure",
"members": {
"InstanceInformationFilterList": {
"target": "com.amazonaws.ssm#InstanceInformationFilterList",
"traits": {
"smithy.api#documentation": "<p>This is a legacy method. We recommend that you don't use this method. Instead, use the\n <code>Filters</code> data type. <code>Filters</code> enables you to return instance information\n by filtering based on tags applied to managed instances.</p>\n <note>\n <p>Attempting to use <code>InstanceInformationFilterList</code> and <code>Filters</code> leads\n to an exception error. </p>\n </note>"
}
},
"Filters": {
"target": "com.amazonaws.ssm#InstanceInformationStringFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more filters. Use a filter to return a more specific list of instances. You can\n filter based on tags applied to EC2 instances. Use this <code>Filters</code> data type instead of\n <code>InstanceInformationFilterList</code>, which is deprecated.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResultsEC2Compatible",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results. </p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInstanceInformationResult": {
"type": "structure",
"members": {
"InstanceInformationList": {
"target": "com.amazonaws.ssm#InstanceInformationList",
"traits": {
"smithy.api#documentation": "<p>The instance information list.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty. </p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInstancePatchStates": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeInstancePatchStatesRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeInstancePatchStatesResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the high-level patch state of one or more instances.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "InstancePatchStates",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeInstancePatchStatesForPatchGroup": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeInstancePatchStatesForPatchGroupRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeInstancePatchStatesForPatchGroupResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilter"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the high-level patch state for the instances in the specified patch group.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "InstancePatchStates",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeInstancePatchStatesForPatchGroupRequest": {
"type": "structure",
"members": {
"PatchGroup": {
"target": "com.amazonaws.ssm#PatchGroup",
"traits": {
"smithy.api#documentation": "<p>The name of the patch group for which the patch state information should be\n retrieved.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#InstancePatchStateFilterList",
"traits": {
"smithy.api#documentation": "<p>Each entry in the array is a structure containing:</p>\n <p>Key (string between 1 and 200 characters)</p>\n <p> Values (array containing a single string)</p>\n <p> Type (string \"Equal\", \"NotEqual\", \"LessThan\", \"GreaterThan\")</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#PatchComplianceMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of patches to return (per page).</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInstancePatchStatesForPatchGroupResult": {
"type": "structure",
"members": {
"InstancePatchStates": {
"target": "com.amazonaws.ssm#InstancePatchStatesList",
"traits": {
"smithy.api#documentation": "<p>The high-level patch state for the requested instances. </p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInstancePatchStatesRequest": {
"type": "structure",
"members": {
"InstanceIds": {
"target": "com.amazonaws.ssm#InstanceIdList",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance whose patch state information should be retrieved.</p>",
"smithy.api#required": {}
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#PatchComplianceMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of instances to return (per page).</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInstancePatchStatesResult": {
"type": "structure",
"members": {
"InstancePatchStates": {
"target": "com.amazonaws.ssm#InstancePatchStateList",
"traits": {
"smithy.api#documentation": "<p>The high-level patch state for the requested instances.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInstancePatches": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeInstancePatchesRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeInstancePatchesResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilter"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves information about the patches on the specified instance and their state relative\n to the patch baseline being used for the instance.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Patches",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeInstancePatchesRequest": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance whose patch state information should be retrieved.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#PatchOrchestratorFilterList",
"traits": {
"smithy.api#documentation": "<p>An array of structures. Each entry in the array is a structure containing a Key, Value\n combination. Valid values for Key are <code>Classification</code> | <code>KBId</code> |\n <code>Severity</code> | <code>State</code>.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#PatchComplianceMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of patches to return (per page).</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInstancePatchesResult": {
"type": "structure",
"members": {
"Patches": {
"target": "com.amazonaws.ssm#PatchComplianceDataList",
"traits": {
"smithy.api#documentation": "<p>Each entry in the array is a structure containing:</p>\n <p>Title (string)</p>\n <p>KBId (string)</p>\n <p>Classification (string)</p>\n <p>Severity (string)</p>\n <p>State (string, such as \"INSTALLED\" or \"FAILED\")</p>\n <p>InstalledTime (DateTime)</p>\n <p>InstalledBy (string)</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInventoryDeletions": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeInventoryDeletionsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeInventoryDeletionsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDeletionIdException"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Describes a specific delete inventory operation.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "InventoryDeletions",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeInventoryDeletionsRequest": {
"type": "structure",
"members": {
"DeletionId": {
"target": "com.amazonaws.ssm#UUID",
"traits": {
"smithy.api#documentation": "<p>Specify the delete inventory ID for which you want information. This ID was returned by the\n <code>DeleteInventory</code> action.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeInventoryDeletionsResult": {
"type": "structure",
"members": {
"InventoryDeletions": {
"target": "com.amazonaws.ssm#InventoryDeletionsList",
"traits": {
"smithy.api#documentation": "<p>A list of status items for deleted inventory.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTaskInvocations": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTaskInvocationsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTaskInvocationsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the individual task executions (one per target) for a particular task run as part\n of a maintenance window execution.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "WindowExecutionTaskInvocationIdentities",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTaskInvocationsRequest": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution the task is part of.</p>",
"smithy.api#required": {}
}
},
"TaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskId",
"traits": {
"smithy.api#documentation": "<p>The ID of the specific task in the maintenance window task that should be retrieved.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#MaintenanceWindowFilterList",
"traits": {
"smithy.api#documentation": "<p>Optional filters used to scope down the returned task invocations. The supported filter key\n is STATUS with the corresponding values PENDING, IN_PROGRESS, SUCCESS, FAILED, TIMED_OUT,\n CANCELLING, and CANCELLED.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaintenanceWindowMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTaskInvocationsResult": {
"type": "structure",
"members": {
"WindowExecutionTaskInvocationIdentities": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationIdentityList",
"traits": {
"smithy.api#documentation": "<p>Information about the task invocation results per invocation.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTasks": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTasksRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTasksResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>For a given maintenance window execution, lists the tasks that were run.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "WindowExecutionTaskIdentities",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTasksRequest": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution whose task executions should be retrieved.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#MaintenanceWindowFilterList",
"traits": {
"smithy.api#documentation": "<p>Optional filters used to scope down the returned tasks. The supported filter key is STATUS\n with the corresponding values PENDING, IN_PROGRESS, SUCCESS, FAILED, TIMED_OUT, CANCELLING, and\n CANCELLED. </p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaintenanceWindowMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowExecutionTasksResult": {
"type": "structure",
"members": {
"WindowExecutionTaskIdentities": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskIdentityList",
"traits": {
"smithy.api#documentation": "<p>Information about the task executions.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowExecutions": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowExecutionsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowExecutionsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists the executions of a maintenance window. This includes information about when the\n maintenance window was scheduled to be active, and information about tasks registered and run\n with the maintenance window.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "WindowExecutions",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowExecutionsRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window whose executions should be retrieved.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#MaintenanceWindowFilterList",
"traits": {
"smithy.api#documentation": "<p>Each entry in the array is a structure containing:</p>\n <p>Key (string, between 1 and 128 characters)</p>\n <p>Values (array of strings, each string is between 1 and 256 characters)</p>\n <p>The supported Keys are ExecutedBefore and ExecutedAfter with the value being a date/time\n string such as 2016-11-04T05:00:00Z.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaintenanceWindowMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowExecutionsResult": {
"type": "structure",
"members": {
"WindowExecutions": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionList",
"traits": {
"smithy.api#documentation": "<p>Information about the maintenance window executions.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowSchedule": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowScheduleRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowScheduleResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves information about upcoming executions of a maintenance window.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "ScheduledWindowExecutions",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowScheduleRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window to retrieve information about.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The instance ID or key/value pair to retrieve information about.</p>"
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#MaintenanceWindowResourceType",
"traits": {
"smithy.api#documentation": "<p>The type of resource you want to retrieve information about. For example, \"INSTANCE\".</p>"
}
},
"Filters": {
"target": "com.amazonaws.ssm#PatchOrchestratorFilterList",
"traits": {
"smithy.api#documentation": "<p>Filters used to limit the range of results. For example, you can limit maintenance window\n executions to only those scheduled before or after a certain date and time.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaintenanceWindowSearchMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowScheduleResult": {
"type": "structure",
"members": {
"ScheduledWindowExecutions": {
"target": "com.amazonaws.ssm#ScheduledWindowExecutionList",
"traits": {
"smithy.api#documentation": "<p>Information about maintenance window executions scheduled for the specified time\n range.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You use this token in the next call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowTargets": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowTargetsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowTargetsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists the targets registered with the maintenance window.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Targets",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowTargetsRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window whose targets should be retrieved.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#MaintenanceWindowFilterList",
"traits": {
"smithy.api#documentation": "<p>Optional filters that can be used to narrow down the scope of the returned window targets.\n The supported filter keys are Type, WindowTargetId and OwnerInformation.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaintenanceWindowMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowTargetsResult": {
"type": "structure",
"members": {
"Targets": {
"target": "com.amazonaws.ssm#MaintenanceWindowTargetList",
"traits": {
"smithy.api#documentation": "<p>Information about the targets in the maintenance window.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowTasks": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowTasksRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowTasksResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists the tasks in a maintenance window.</p>\n <note>\n <p>For maintenance window tasks without a specified target, you cannot supply values for\n <code>--max-errors</code> and <code>--max-concurrency</code>. Instead, the system inserts a\n placeholder value of <code>1</code>, which may be reported in the response to this command.\n These values do not affect the running of your task and can be ignored.</p>\n </note>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Tasks",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowTasksRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window whose tasks should be retrieved.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#MaintenanceWindowFilterList",
"traits": {
"smithy.api#documentation": "<p>Optional filters used to narrow down the scope of the returned tasks. The supported filter\n keys are WindowTaskId, TaskArn, Priority, and TaskType.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaintenanceWindowMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowTasksResult": {
"type": "structure",
"members": {
"Tasks": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskList",
"traits": {
"smithy.api#documentation": "<p>Information about the tasks in the maintenance window.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindows": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the maintenance windows in an AWS account.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "WindowIdentities",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowsForTarget": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowsForTargetRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeMaintenanceWindowsForTargetResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves information about the maintenance window targets or tasks that an instance is\n associated with.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "WindowIdentities",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowsForTargetRequest": {
"type": "structure",
"members": {
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The instance ID or key/value pair to retrieve information about.</p>",
"smithy.api#required": {}
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#MaintenanceWindowResourceType",
"traits": {
"smithy.api#documentation": "<p>The type of resource you want to retrieve information about. For example, \"INSTANCE\".</p>",
"smithy.api#required": {}
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaintenanceWindowSearchMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowsForTargetResult": {
"type": "structure",
"members": {
"WindowIdentities": {
"target": "com.amazonaws.ssm#MaintenanceWindowsForTargetList",
"traits": {
"smithy.api#documentation": "<p>Information about the maintenance window targets and tasks an instance is associated\n with.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You use this token in the next call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowsRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#MaintenanceWindowFilterList",
"traits": {
"smithy.api#documentation": "<p>Optional filters used to narrow down the scope of the returned maintenance windows.\n Supported filter keys are <b>Name</b> and <b>Enabled</b>.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaintenanceWindowMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeMaintenanceWindowsResult": {
"type": "structure",
"members": {
"WindowIdentities": {
"target": "com.amazonaws.ssm#MaintenanceWindowIdentityList",
"traits": {
"smithy.api#documentation": "<p>Information about the maintenance windows.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeOpsItems": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeOpsItemsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeOpsItemsResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Query a set of OpsItems. You must have permission in AWS Identity and Access Management\n (IAM) to query a list of OpsItems. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html\">Getting started with\n OpsCenter</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n <p>Operations engineers and IT professionals use OpsCenter to view, investigate, and remediate\n operational issues impacting the performance and health of their AWS resources. For more\n information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html\">AWS Systems Manager OpsCenter</a> in the\n <i>AWS Systems Manager User Guide</i>. </p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "OpsItemSummaries",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeOpsItemsRequest": {
"type": "structure",
"members": {
"OpsItemFilters": {
"target": "com.amazonaws.ssm#OpsItemFilters",
"traits": {
"smithy.api#documentation": "<p>One or more filters to limit the response.</p>\n <ul>\n <li>\n <p>Key: CreatedTime</p>\n <p>Operations: GreaterThan, LessThan</p>\n </li>\n <li>\n <p>Key: LastModifiedBy</p>\n <p>Operations: Contains, Equals</p>\n </li>\n <li>\n <p>Key: LastModifiedTime</p>\n <p>Operations: GreaterThan, LessThan</p>\n </li>\n <li>\n <p>Key: Priority</p>\n <p>Operations: Equals</p>\n </li>\n <li>\n <p>Key: Source</p>\n <p>Operations: Contains, Equals</p>\n </li>\n <li>\n <p>Key: Status</p>\n <p>Operations: Equals</p>\n </li>\n <li>\n <p>Key: Title</p>\n <p>Operations: Contains</p>\n </li>\n <li>\n <p>Key: OperationalData*</p>\n <p>Operations: Equals</p>\n </li>\n <li>\n <p>Key: OperationalDataKey</p>\n <p>Operations: Equals</p>\n </li>\n <li>\n <p>Key: OperationalDataValue</p>\n <p>Operations: Equals, Contains</p>\n </li>\n <li>\n <p>Key: OpsItemId</p>\n <p>Operations: Equals</p>\n </li>\n <li>\n <p>Key: ResourceId</p>\n <p>Operations: Contains</p>\n </li>\n <li>\n <p>Key: AutomationId</p>\n <p>Operations: Equals</p>\n </li>\n </ul>\n <p>*If you filter the response by using the OperationalData operator, specify a key-value pair\n by using the following JSON format: {\"key\":\"key_name\",\"value\":\"a_value\"}</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#OpsItemMaxResults",
"traits": {
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeOpsItemsResponse": {
"type": "structure",
"members": {
"NextToken": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
},
"OpsItemSummaries": {
"target": "com.amazonaws.ssm#OpsItemSummaries",
"traits": {
"smithy.api#documentation": "<p>A list of OpsItems.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeParameters": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeParametersRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeParametersResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilterKey"
},
{
"target": "com.amazonaws.ssm#InvalidFilterOption"
},
{
"target": "com.amazonaws.ssm#InvalidFilterValue"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Get information about a parameter.</p>\n <note>\n <p>Request results are returned on a best-effort basis. If you specify <code>MaxResults</code>\n in the request, the response includes information up to the limit specified. The number of items\n returned, however, can be between zero and the value of <code>MaxResults</code>. If the service\n reaches an internal limit while processing the results, it stops the operation and returns the\n matching values up to that point and a <code>NextToken</code>. You can specify the\n <code>NextToken</code> in a subsequent call to get the next set of results.</p>\n </note>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeParametersRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#ParametersFilterList",
"traits": {
"smithy.api#documentation": "<p>This data type is deprecated. Instead, use <code>ParameterFilters</code>.</p>"
}
},
"ParameterFilters": {
"target": "com.amazonaws.ssm#ParameterStringFilterList",
"traits": {
"smithy.api#documentation": "<p>Filters to limit the request results.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeParametersResult": {
"type": "structure",
"members": {
"Parameters": {
"target": "com.amazonaws.ssm#ParameterMetadataList",
"traits": {
"smithy.api#documentation": "<p>Parameters returned by the request.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribePatchBaselines": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribePatchBaselinesRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribePatchBaselinesResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists the patch baselines in your AWS account.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "BaselineIdentities",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribePatchBaselinesRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#PatchOrchestratorFilterList",
"traits": {
"smithy.api#documentation": "<p>Each element in the array is a structure containing: </p>\n <p>Key: (string, \"NAME_PREFIX\" or \"OWNER\")</p>\n <p>Value: (array of strings, exactly 1 entry, between 1 and 255 characters)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#PatchBaselineMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of patch baselines to return (per page).</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribePatchBaselinesResult": {
"type": "structure",
"members": {
"BaselineIdentities": {
"target": "com.amazonaws.ssm#PatchBaselineIdentityList",
"traits": {
"smithy.api#documentation": "<p>An array of PatchBaselineIdentity elements.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribePatchGroupState": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribePatchGroupStateRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribePatchGroupStateResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Returns high-level aggregated patch compliance state for a patch group.</p>"
}
},
"com.amazonaws.ssm#DescribePatchGroupStateRequest": {
"type": "structure",
"members": {
"PatchGroup": {
"target": "com.amazonaws.ssm#PatchGroup",
"traits": {
"smithy.api#documentation": "<p>The name of the patch group whose patch snapshot should be retrieved.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DescribePatchGroupStateResult": {
"type": "structure",
"members": {
"Instances": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of instances in the patch group.</p>"
}
},
"InstancesWithInstalledPatches": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of instances with installed patches.</p>"
}
},
"InstancesWithInstalledOtherPatches": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of instances with patches installed that aren't defined in the patch\n baseline.</p>"
}
},
"InstancesWithInstalledPendingRebootPatches": {
"target": "com.amazonaws.ssm#InstancesCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of instances with patches installed by Patch Manager that have not been rebooted\n after the patch installation. The status of these instances is NON_COMPLIANT.</p>"
}
},
"InstancesWithInstalledRejectedPatches": {
"target": "com.amazonaws.ssm#InstancesCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of instances with patches installed that are specified in a RejectedPatches list.\n Patches with a status of <i>INSTALLED_REJECTED</i> were typically installed before\n they were added to a RejectedPatches list.</p>\n <note>\n <p>If ALLOW_AS_DEPENDENCY is the specified option for RejectedPatchesAction, the value of\n InstancesWithInstalledRejectedPatches will always be 0 (zero).</p>\n </note>"
}
},
"InstancesWithMissingPatches": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of instances with missing patches from the patch baseline.</p>"
}
},
"InstancesWithFailedPatches": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of instances with patches from the patch baseline that failed to install.</p>"
}
},
"InstancesWithNotApplicablePatches": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of instances with patches that aren't applicable.</p>"
}
},
"InstancesWithUnreportedNotApplicablePatches": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of instances with <code>NotApplicable</code> patches beyond the supported limit,\n which are not reported by name to Systems Manager Inventory.</p>"
}
},
"InstancesWithCriticalNonCompliantPatches": {
"target": "com.amazonaws.ssm#InstancesCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of instances where patches that are specified as \"Critical\" for compliance\n reporting in the patch baseline are not installed. These patches might be missing, have failed\n installation, were rejected, or were installed but awaiting a required instance reboot. The\n status of these instances is <code>NON_COMPLIANT</code>.</p>"
}
},
"InstancesWithSecurityNonCompliantPatches": {
"target": "com.amazonaws.ssm#InstancesCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of instances where patches that are specified as \"Security\" in a patch advisory\n are not installed. These patches might be missing, have failed installation, were rejected, or\n were installed but awaiting a required instance reboot. The status of these instances is\n <code>NON_COMPLIANT</code>.</p>"
}
},
"InstancesWithOtherNonCompliantPatches": {
"target": "com.amazonaws.ssm#InstancesCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of instances with patches installed that are specified as other than \"Critical\"\n or \"Security\" but are not compliant with the patch baseline. The status of these instances is\n NON_COMPLIANT.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribePatchGroups": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribePatchGroupsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribePatchGroupsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists all patch groups that have been registered with patch baselines.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Mappings",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribePatchGroupsRequest": {
"type": "structure",
"members": {
"MaxResults": {
"target": "com.amazonaws.ssm#PatchBaselineMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of patch groups to return (per page).</p>"
}
},
"Filters": {
"target": "com.amazonaws.ssm#PatchOrchestratorFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more filters. Use a filter to return a more specific list of results.</p>\n <p>For <code>DescribePatchGroups</code>,valid filter keys include the following:</p>\n <ul>\n <li>\n <p>\n <code>NAME_PREFIX</code>: The name of the patch group. Wildcards (*) are accepted.</p>\n </li>\n <li>\n <p>\n <code>OPERATING_SYSTEM</code>: The supported operating system type to return results for.\n For valid operating system values, see <a>GetDefaultPatchBaselineRequest$OperatingSystem</a> in <a>CreatePatchBaseline</a>.</p>\n <p>Examples:</p>\n <ul>\n <li>\n <p>\n <code>--filters Key=NAME_PREFIX,Values=MyPatchGroup*</code>\n </p>\n </li>\n <li>\n <p>\n <code>--filters Key=OPERATING_SYSTEM,Values=AMAZON_LINUX_2</code>\n </p>\n </li>\n </ul>\n </li>\n </ul>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribePatchGroupsResult": {
"type": "structure",
"members": {
"Mappings": {
"target": "com.amazonaws.ssm#PatchGroupPatchBaselineMappingList",
"traits": {
"smithy.api#documentation": "<p>Each entry in the array contains:</p>\n <p>PatchGroup: string (between 1 and 256 characters, Regex:\n ^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$)</p>\n <p>PatchBaselineIdentity: A PatchBaselineIdentity element. </p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribePatchProperties": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribePatchPropertiesRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribePatchPropertiesResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists the properties of available patches organized by product, product family,\n classification, severity, and other properties of available patches. You can use the reported\n properties in the filters you specify in requests for actions such as <a>CreatePatchBaseline</a>, <a>UpdatePatchBaseline</a>, <a>DescribeAvailablePatches</a>, and <a>DescribePatchBaselines</a>.</p>\n <p>The following section lists the properties that can be used in filters for each major\n operating system type:</p>\n <dl>\n <dt>AMAZON_LINUX</dt>\n <dd>\n <p>Valid properties: PRODUCT, CLASSIFICATION, SEVERITY</p>\n </dd>\n <dt>AMAZON_LINUX_2</dt>\n <dd>\n <p>Valid properties: PRODUCT, CLASSIFICATION, SEVERITY</p>\n </dd>\n <dt>CENTOS</dt>\n <dd>\n <p>Valid properties: PRODUCT, CLASSIFICATION, SEVERITY</p>\n </dd>\n <dt>DEBIAN</dt>\n <dd>\n <p>Valid properties: PRODUCT, PRIORITY</p>\n </dd>\n <dt>MACOS</dt>\n <dd>\n <p>Valid properties: PRODUCT, CLASSIFICATION</p>\n </dd>\n <dt>ORACLE_LINUX</dt>\n <dd>\n <p>Valid properties: PRODUCT, CLASSIFICATION, SEVERITY</p>\n </dd>\n <dt>REDHAT_ENTERPRISE_LINUX</dt>\n <dd>\n <p>Valid properties: PRODUCT, CLASSIFICATION, SEVERITY</p>\n </dd>\n <dt>SUSE</dt>\n <dd>\n <p>Valid properties: PRODUCT, CLASSIFICATION, SEVERITY</p>\n </dd>\n <dt>UBUNTU</dt>\n <dd>\n <p>Valid properties: PRODUCT, PRIORITY</p>\n </dd>\n <dt>WINDOWS</dt>\n <dd>\n <p>Valid properties: PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY</p>\n </dd>\n </dl>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Properties",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribePatchPropertiesRequest": {
"type": "structure",
"members": {
"OperatingSystem": {
"target": "com.amazonaws.ssm#OperatingSystem",
"traits": {
"smithy.api#documentation": "<p>The operating system type for which to list patches.</p>",
"smithy.api#required": {}
}
},
"Property": {
"target": "com.amazonaws.ssm#PatchProperty",
"traits": {
"smithy.api#documentation": "<p>The patch property for which you want to view patch details. </p>",
"smithy.api#required": {}
}
},
"PatchSet": {
"target": "com.amazonaws.ssm#PatchSet",
"traits": {
"smithy.api#documentation": "<p>Indicates whether to list patches for the Windows operating system or for Microsoft\n applications. Not applicable for the Linux or macOS operating systems.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribePatchPropertiesResult": {
"type": "structure",
"members": {
"Properties": {
"target": "com.amazonaws.ssm#PatchPropertiesList",
"traits": {
"smithy.api#documentation": "<p>A list of the properties for patches matching the filter request parameters.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You use this token in the next call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeSessions": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DescribeSessionsRequest"
},
"output": {
"target": "com.amazonaws.ssm#DescribeSessionsResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilterKey"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves a list of all active sessions (both connected and disconnected) or terminated\n sessions from the past 30 days.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Sessions",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#DescribeSessionsRequest": {
"type": "structure",
"members": {
"State": {
"target": "com.amazonaws.ssm#SessionState",
"traits": {
"smithy.api#documentation": "<p>The session status to retrieve a list of sessions for. For example, \"Active\".</p>",
"smithy.api#required": {}
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#SessionMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
},
"Filters": {
"target": "com.amazonaws.ssm#SessionFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more filters to limit the type of sessions returned by the request.</p>"
}
}
}
},
"com.amazonaws.ssm#DescribeSessionsResponse": {
"type": "structure",
"members": {
"Sessions": {
"target": "com.amazonaws.ssm#SessionList",
"traits": {
"smithy.api#documentation": "<p>A list of sessions meeting the request parameters.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#DescriptionInDocument": {
"type": "string"
},
"com.amazonaws.ssm#DisassociateOpsItemRelatedItem": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#DisassociateOpsItemRelatedItemRequest"
},
"output": {
"target": "com.amazonaws.ssm#DisassociateOpsItemRelatedItemResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsItemInvalidParameterException"
},
{
"target": "com.amazonaws.ssm#OpsItemNotFoundException"
},
{
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationNotFoundException"
}
],
"traits": {
"smithy.api#documentation": "<p>Deletes the association between an OpsItem and a related resource. For example, this API\n action can delete an Incident Manager incident from an OpsItem. Incident Manager is a capability\n of AWS Systems Manager.</p>"
}
},
"com.amazonaws.ssm#DisassociateOpsItemRelatedItemRequest": {
"type": "structure",
"members": {
"OpsItemId": {
"target": "com.amazonaws.ssm#OpsItemId",
"traits": {
"smithy.api#documentation": "<p>The ID of the OpsItem for which you want to delete an association between the OpsItem and a\n related resource.</p>",
"smithy.api#required": {}
}
},
"AssociationId": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationId",
"traits": {
"smithy.api#documentation": "<p>The ID of the association for which you want to delete an association between the OpsItem\n and a related resource.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#DisassociateOpsItemRelatedItemResponse": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#DocumentARN": {
"type": "string",
"traits": {
"smithy.api#pattern": "^[a-zA-Z0-9_\\-.:/]{3,128}$"
}
},
"com.amazonaws.ssm#DocumentAlreadyExists": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified document already exists.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#DocumentAuthor": {
"type": "string"
},
"com.amazonaws.ssm#DocumentContent": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#DocumentDefaultVersionDescription": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the document.</p>"
}
},
"DefaultVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The default version of the document.</p>"
}
},
"DefaultVersionName": {
"target": "com.amazonaws.ssm#DocumentVersionName",
"traits": {
"smithy.api#documentation": "<p>The default version of the artifact associated with the document.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A default version of a document.</p>"
}
},
"com.amazonaws.ssm#DocumentDescription": {
"type": "structure",
"members": {
"Sha1": {
"target": "com.amazonaws.ssm#DocumentSha1",
"traits": {
"smithy.api#documentation": "<p>The SHA1 hash of the document, which you can use for verification.</p>"
}
},
"Hash": {
"target": "com.amazonaws.ssm#DocumentHash",
"traits": {
"smithy.api#documentation": "<p>The Sha256 or Sha1 hash created by the system when the document was created. </p>\n <note>\n <p>Sha1 hashes have been deprecated.</p>\n </note>"
}
},
"HashType": {
"target": "com.amazonaws.ssm#DocumentHashType",
"traits": {
"smithy.api#documentation": "<p>The hash type of the document. Valid values include <code>Sha256</code> or\n <code>Sha1</code>.</p>\n <note>\n <p>Sha1 hashes have been deprecated.</p>\n </note>"
}
},
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document.</p>"
}
},
"DisplayName": {
"target": "com.amazonaws.ssm#DocumentDisplayName",
"traits": {
"smithy.api#documentation": "<p>The friendly name of the Systems Manager document. This value can differ for each version of the\n document. If you want to update this value, see <a>UpdateDocument</a>.</p>"
}
},
"VersionName": {
"target": "com.amazonaws.ssm#DocumentVersionName",
"traits": {
"smithy.api#documentation": "<p>The version of the artifact associated with the document.</p>"
}
},
"Owner": {
"target": "com.amazonaws.ssm#DocumentOwner",
"traits": {
"smithy.api#documentation": "<p>The AWS user account that created the document.</p>"
}
},
"CreatedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date when the document was created.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#DocumentStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the Systems Manager document.</p>"
}
},
"StatusInformation": {
"target": "com.amazonaws.ssm#DocumentStatusInformation",
"traits": {
"smithy.api#documentation": "<p>A message returned by AWS Systems Manager that explains the <code>Status</code> value. For example, a\n <code>Failed</code> status might be explained by the <code>StatusInformation</code> message,\n \"The specified S3 bucket does not exist. Verify that the URL of the S3 bucket is correct.\"</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#DescriptionInDocument",
"traits": {
"smithy.api#documentation": "<p>A description of the document. </p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#DocumentParameterList",
"traits": {
"smithy.api#documentation": "<p>A description of the parameters for a document.</p>"
}
},
"PlatformTypes": {
"target": "com.amazonaws.ssm#PlatformTypeList",
"traits": {
"smithy.api#documentation": "<p>The list of OS platforms compatible with this Systems Manager document. </p>"
}
},
"DocumentType": {
"target": "com.amazonaws.ssm#DocumentType",
"traits": {
"smithy.api#documentation": "<p>The type of document.</p>"
}
},
"SchemaVersion": {
"target": "com.amazonaws.ssm#DocumentSchemaVersion",
"traits": {
"smithy.api#documentation": "<p>The schema version.</p>"
}
},
"LatestVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The latest version of the document.</p>"
}
},
"DefaultVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The default version.</p>"
}
},
"DocumentFormat": {
"target": "com.amazonaws.ssm#DocumentFormat",
"traits": {
"smithy.api#documentation": "<p>The document format, either JSON or YAML.</p>"
}
},
"TargetType": {
"target": "com.amazonaws.ssm#TargetType",
"traits": {
"smithy.api#documentation": "<p>The target type which defines the kinds of resources the document can run on. For example,\n /AWS::EC2::Instance. For a list of valid resource types, see <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\">AWS resource and property types\n reference</a> in the <i>AWS CloudFormation User Guide</i>. </p>"
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>The tags, or metadata, that have been applied to the document.</p>"
}
},
"AttachmentsInformation": {
"target": "com.amazonaws.ssm#AttachmentInformationList",
"traits": {
"smithy.api#documentation": "<p>Details about the document attachments, including names, locations, sizes, and so on.</p>"
}
},
"Requires": {
"target": "com.amazonaws.ssm#DocumentRequiresList",
"traits": {
"smithy.api#documentation": "<p>A list of SSM documents required by a document. For example, an\n <code>ApplicationConfiguration</code> document requires an\n <code>ApplicationConfigurationSchema</code> document.</p>"
}
},
"Author": {
"target": "com.amazonaws.ssm#DocumentAuthor",
"traits": {
"smithy.api#documentation": "<p>The user in your organization who created the document.</p>"
}
},
"ReviewInformation": {
"target": "com.amazonaws.ssm#ReviewInformationList",
"traits": {
"smithy.api#documentation": "<p>Details about the review of a document.</p>"
}
},
"ApprovedVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the document currently approved for use in the organization.</p>"
}
},
"PendingReviewVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the document that is currently under review.</p>"
}
},
"ReviewStatus": {
"target": "com.amazonaws.ssm#ReviewStatus",
"traits": {
"smithy.api#documentation": "<p>The current status of the review.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes a Systems Manager document. </p>"
}
},
"com.amazonaws.ssm#DocumentDisplayName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 1024
},
"smithy.api#pattern": "^[\\w\\.\\-\\:\\/ ]*$"
}
},
"com.amazonaws.ssm#DocumentFilter": {
"type": "structure",
"members": {
"key": {
"target": "com.amazonaws.ssm#DocumentFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>",
"smithy.api#required": {}
}
},
"value": {
"target": "com.amazonaws.ssm#DocumentFilterValue",
"traits": {
"smithy.api#documentation": "<p>The value of the filter.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>This data type is deprecated. Instead, use <a>DocumentKeyValuesFilter</a>.</p>"
}
},
"com.amazonaws.ssm#DocumentFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Name",
"name": "Name"
},
{
"value": "Owner",
"name": "Owner"
},
{
"value": "PlatformTypes",
"name": "PlatformTypes"
},
{
"value": "DocumentType",
"name": "DocumentType"
}
]
}
},
"com.amazonaws.ssm#DocumentFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#DocumentFilter",
"traits": {
"smithy.api#xmlName": "DocumentFilter"
}
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#DocumentFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#DocumentFormat": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "YAML",
"name": "YAML"
},
{
"value": "JSON",
"name": "JSON"
},
{
"value": "TEXT",
"name": "TEXT"
}
]
}
},
"com.amazonaws.ssm#DocumentHash": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 256
}
}
},
"com.amazonaws.ssm#DocumentHashType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Sha256",
"name": "SHA256"
},
{
"value": "Sha1",
"name": "SHA1"
}
]
}
},
"com.amazonaws.ssm#DocumentIdentifier": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document.</p>"
}
},
"CreatedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the Systems Manager document was created.</p>"
}
},
"DisplayName": {
"target": "com.amazonaws.ssm#DocumentDisplayName",
"traits": {
"smithy.api#documentation": "<p>An optional field where you can specify a friendly name for the Systems Manager document. This value\n can differ for each version of the document. If you want to update this value, see <a>UpdateDocument</a>.</p>"
}
},
"Owner": {
"target": "com.amazonaws.ssm#DocumentOwner",
"traits": {
"smithy.api#documentation": "<p>The AWS user account that created the document.</p>"
}
},
"VersionName": {
"target": "com.amazonaws.ssm#DocumentVersionName",
"traits": {
"smithy.api#documentation": "<p>An optional field specifying the version of the artifact associated with the document. For\n example, \"Release 12, Update 6\". This value is unique across all versions of a document, and\n cannot be changed.</p>"
}
},
"PlatformTypes": {
"target": "com.amazonaws.ssm#PlatformTypeList",
"traits": {
"smithy.api#documentation": "<p>The operating system platform. </p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version.</p>"
}
},
"DocumentType": {
"target": "com.amazonaws.ssm#DocumentType",
"traits": {
"smithy.api#documentation": "<p>The document type.</p>"
}
},
"SchemaVersion": {
"target": "com.amazonaws.ssm#DocumentSchemaVersion",
"traits": {
"smithy.api#documentation": "<p>The schema version.</p>"
}
},
"DocumentFormat": {
"target": "com.amazonaws.ssm#DocumentFormat",
"traits": {
"smithy.api#documentation": "<p>The document format, either JSON or YAML.</p>"
}
},
"TargetType": {
"target": "com.amazonaws.ssm#TargetType",
"traits": {
"smithy.api#documentation": "<p>The target type which defines the kinds of resources the document can run on. For example,\n /AWS::EC2::Instance. For a list of valid resource types, see <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\">AWS resource and property types\n reference</a> in the <i>AWS CloudFormation User Guide</i>. </p>"
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>The tags, or metadata, that have been applied to the document.</p>"
}
},
"Requires": {
"target": "com.amazonaws.ssm#DocumentRequiresList",
"traits": {
"smithy.api#documentation": "<p>A list of SSM documents required by a document. For example, an\n <code>ApplicationConfiguration</code> document requires an\n <code>ApplicationConfigurationSchema</code> document.</p>"
}
},
"ReviewStatus": {
"target": "com.amazonaws.ssm#ReviewStatus",
"traits": {
"smithy.api#documentation": "<p>The current status of a document review.</p>"
}
},
"Author": {
"target": "com.amazonaws.ssm#DocumentAuthor",
"traits": {
"smithy.api#documentation": "<p>The user in your organization who created the document.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes the name of a Systems Manager document.</p>"
}
},
"com.amazonaws.ssm#DocumentIdentifierList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#DocumentIdentifier",
"traits": {
"smithy.api#xmlName": "DocumentIdentifier"
}
}
},
"com.amazonaws.ssm#DocumentKeyValuesFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#DocumentKeyValuesFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter key.</p>"
}
},
"Values": {
"target": "com.amazonaws.ssm#DocumentKeyValuesFilterValues",
"traits": {
"smithy.api#documentation": "<p>The value for the filter key.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>One or more filters. Use a filter to return a more specific list of documents.</p>\n <p>For keys, you can specify one or more tags that have been applied to a document. </p>\n <p>You can also use AWS-provided keys, some of which have specific allowed values. These keys\n and their associated values are as follows:</p>\n <dl>\n <dt>DocumentType</dt>\n <dd>\n <ul>\n <li>\n <p>ApplicationConfiguration</p>\n </li>\n <li>\n <p>ApplicationConfigurationSchema</p>\n </li>\n <li>\n <p>Automation</p>\n </li>\n <li>\n <p>ChangeCalendar</p>\n </li>\n <li>\n <p>Command</p>\n </li>\n <li>\n <p>DeploymentStrategy</p>\n </li>\n <li>\n <p>Package</p>\n </li>\n <li>\n <p>Policy</p>\n </li>\n <li>\n <p>Session</p>\n </li>\n </ul>\n </dd>\n <dt>Owner</dt>\n <dd>\n <p>Note that only one <code>Owner</code> can be specified in a request. For example:\n <code>Key=Owner,Values=Self</code>.</p>\n <ul>\n <li>\n <p>Amazon</p>\n </li>\n <li>\n <p>Private</p>\n </li>\n <li>\n <p>Public</p>\n </li>\n <li>\n <p>Self</p>\n </li>\n <li>\n <p>ThirdParty</p>\n </li>\n </ul>\n </dd>\n <dt>PlatformTypes</dt>\n <dd>\n <ul>\n <li>\n <p>Linux</p>\n </li>\n <li>\n <p>Windows</p>\n </li>\n </ul>\n </dd>\n </dl>\n <p>\n <code>Name</code> is another AWS-provided key. If you use <code>Name</code> as a key, you\n can use a name prefix to return a list of documents. For example, in the AWS CLI, to return a\n list of all documents that begin with <code>Te</code>, run the following command:</p>\n <p>\n <code>aws ssm list-documents --filters Key=Name,Values=Te</code>\n </p>\n <p>You can also use the <code>TargetType</code> AWS-provided key. For a list of valid resource\n type values that can be used with this key, see <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\">AWS resource and property types\n reference</a> in the <i>AWS CloudFormation User Guide</i>.</p>\n <p>If you specify more than two keys, only documents that are identified by all the tags are\n returned in the results. If you specify more than two values for a key, documents that are\n identified by any of the values are returned in the results.</p>\n <p>To specify a custom key and value pair, use the format\n <code>Key=tag:tagName,Values=valueName</code>.</p>\n <p>For example, if you created a key called region and are using the AWS CLI to call the\n <code>list-documents</code> command: </p>\n <p>\n <code>aws ssm list-documents --filters Key=tag:region,Values=east,west\n Key=Owner,Values=Self</code>\n </p>"
}
},
"com.amazonaws.ssm#DocumentKeyValuesFilterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
}
}
},
"com.amazonaws.ssm#DocumentKeyValuesFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#DocumentKeyValuesFilter"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 6
}
}
},
"com.amazonaws.ssm#DocumentKeyValuesFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
}
}
},
"com.amazonaws.ssm#DocumentKeyValuesFilterValues": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#DocumentKeyValuesFilterValue"
}
},
"com.amazonaws.ssm#DocumentLimitExceeded": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You can have at most 500 active Systems Manager documents.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#DocumentMetadataEnum": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "DocumentReviews",
"name": "DocumentReviews"
}
]
}
},
"com.amazonaws.ssm#DocumentMetadataResponseInfo": {
"type": "structure",
"members": {
"ReviewerResponse": {
"target": "com.amazonaws.ssm#DocumentReviewerResponseList",
"traits": {
"smithy.api#documentation": "<p>Details about a reviewer's response to a document review request.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Details about the response to a document review request.</p>"
}
},
"com.amazonaws.ssm#DocumentName": {
"type": "string",
"traits": {
"smithy.api#pattern": "^[a-zA-Z0-9_\\-.]{3,128}$"
}
},
"com.amazonaws.ssm#DocumentOwner": {
"type": "string"
},
"com.amazonaws.ssm#DocumentParameter": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentParameterName",
"traits": {
"smithy.api#documentation": "<p>The name of the parameter.</p>"
}
},
"Type": {
"target": "com.amazonaws.ssm#DocumentParameterType",
"traits": {
"smithy.api#documentation": "<p>The type of parameter. The type can be either String or StringList.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#DocumentParameterDescrption",
"traits": {
"smithy.api#documentation": "<p>A description of what the parameter does, how to use it, the default value, and whether or\n not the parameter is optional.</p>"
}
},
"DefaultValue": {
"target": "com.amazonaws.ssm#DocumentParameterDefaultValue",
"traits": {
"smithy.api#documentation": "<p>If specified, the default values for the parameters. Parameters without a default value are\n required. Parameters with a default value are optional.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Parameters specified in a System Manager document that run on the server when the command is\n run. </p>"
}
},
"com.amazonaws.ssm#DocumentParameterDefaultValue": {
"type": "string"
},
"com.amazonaws.ssm#DocumentParameterDescrption": {
"type": "string"
},
"com.amazonaws.ssm#DocumentParameterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#DocumentParameter",
"traits": {
"smithy.api#xmlName": "DocumentParameter"
}
}
},
"com.amazonaws.ssm#DocumentParameterName": {
"type": "string"
},
"com.amazonaws.ssm#DocumentParameterType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "String",
"name": "String"
},
{
"value": "StringList",
"name": "StringList"
}
]
}
},
"com.amazonaws.ssm#DocumentPermissionLimit": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The document cannot be shared with more AWS user accounts. You can share a document with a\n maximum of 20 accounts. You can publicly share up to five documents. If you need to increase this\n limit, contact AWS Support.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#DocumentPermissionMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 200
}
}
},
"com.amazonaws.ssm#DocumentPermissionType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Share",
"name": "SHARE"
}
]
}
},
"com.amazonaws.ssm#DocumentRequires": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the required SSM document. The name can be an Amazon Resource Name (ARN).</p>",
"smithy.api#required": {}
}
},
"Version": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version required by the current document.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An SSM document required by the current document.</p>"
}
},
"com.amazonaws.ssm#DocumentRequiresList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#DocumentRequires"
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#DocumentReviewAction": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "SendForReview",
"name": "SendForReview"
},
{
"value": "UpdateReview",
"name": "UpdateReview"
},
{
"value": "Approve",
"name": "Approve"
},
{
"value": "Reject",
"name": "Reject"
}
]
}
},
"com.amazonaws.ssm#DocumentReviewComment": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
},
"smithy.api#pattern": "^(?!\\s*$).+"
}
},
"com.amazonaws.ssm#DocumentReviewCommentList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#DocumentReviewCommentSource"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 1
}
}
},
"com.amazonaws.ssm#DocumentReviewCommentSource": {
"type": "structure",
"members": {
"Type": {
"target": "com.amazonaws.ssm#DocumentReviewCommentType",
"traits": {
"smithy.api#documentation": "<p>The type of information added to a review request. Currently, only the value\n <code>Comment</code> is supported.</p>"
}
},
"Content": {
"target": "com.amazonaws.ssm#DocumentReviewComment",
"traits": {
"smithy.api#documentation": "<p>The content of a comment entered by a user who requests a review of a new document version,\n or who reviews the new version.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about comments added to a document review request.</p>"
}
},
"com.amazonaws.ssm#DocumentReviewCommentType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Comment",
"name": "Comment"
}
]
}
},
"com.amazonaws.ssm#DocumentReviewerResponseList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#DocumentReviewerResponseSource"
}
},
"com.amazonaws.ssm#DocumentReviewerResponseSource": {
"type": "structure",
"members": {
"CreateTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time that a reviewer entered a response to a document review request.</p>"
}
},
"UpdatedTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time that a reviewer last updated a response to a document review\n request.</p>"
}
},
"ReviewStatus": {
"target": "com.amazonaws.ssm#ReviewStatus",
"traits": {
"smithy.api#documentation": "<p>The current review status of a new custom SSM document created by a member of your\n organization, or of the latest version of an existing SSM document.</p>\n <p>Only one version of a document can be in the APPROVED state at a time. When a new version is\n approved, the status of the previous version changes to REJECTED.</p>\n <p>Only one version of a document can be in review, or PENDING, at a time.</p>"
}
},
"Comment": {
"target": "com.amazonaws.ssm#DocumentReviewCommentList",
"traits": {
"smithy.api#documentation": "<p>The comment entered by a reviewer as part of their document review response.</p>"
}
},
"Reviewer": {
"target": "com.amazonaws.ssm#Reviewer",
"traits": {
"smithy.api#documentation": "<p>The user in your organization assigned to review a document request.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about a reviewer's response to a document review request.</p>"
}
},
"com.amazonaws.ssm#DocumentReviews": {
"type": "structure",
"members": {
"Action": {
"target": "com.amazonaws.ssm#DocumentReviewAction",
"traits": {
"smithy.api#documentation": "<p>The action to take on a document approval review request.</p>",
"smithy.api#required": {}
}
},
"Comment": {
"target": "com.amazonaws.ssm#DocumentReviewCommentList",
"traits": {
"smithy.api#documentation": "<p>A comment entered by a user in your organization about the document review request.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about a document approval review.</p>"
}
},
"com.amazonaws.ssm#DocumentSchemaVersion": {
"type": "string",
"traits": {
"smithy.api#pattern": "([0-9]+)\\.([0-9]+)"
}
},
"com.amazonaws.ssm#DocumentSha1": {
"type": "string"
},
"com.amazonaws.ssm#DocumentStatus": {
"type": "string",
"traits": {
"smithy.api#documentation": "<p>The status of a document.</p>",
"smithy.api#enum": [
{
"value": "Creating",
"name": "Creating"
},
{
"value": "Active",
"name": "Active"
},
{
"value": "Updating",
"name": "Updating"
},
{
"value": "Deleting",
"name": "Deleting"
},
{
"value": "Failed",
"name": "Failed"
}
]
}
},
"com.amazonaws.ssm#DocumentStatusInformation": {
"type": "string"
},
"com.amazonaws.ssm#DocumentType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Command",
"name": "Command"
},
{
"value": "Policy",
"name": "Policy"
},
{
"value": "Automation",
"name": "Automation"
},
{
"value": "Session",
"name": "Session"
},
{
"value": "Package",
"name": "Package"
},
{
"value": "ApplicationConfiguration",
"name": "ApplicationConfiguration"
},
{
"value": "ApplicationConfigurationSchema",
"name": "ApplicationConfigurationSchema"
},
{
"value": "DeploymentStrategy",
"name": "DeploymentStrategy"
},
{
"value": "ChangeCalendar",
"name": "ChangeCalendar"
},
{
"value": "Automation.ChangeTemplate",
"name": "ChangeTemplate"
},
{
"value": "ProblemAnalysis",
"name": "ProblemAnalysis"
},
{
"value": "ProblemAnalysisTemplate",
"name": "ProblemAnalysisTemplate"
}
]
}
},
"com.amazonaws.ssm#DocumentVersion": {
"type": "string",
"traits": {
"smithy.api#pattern": "([$]LATEST|[$]DEFAULT|^[1-9][0-9]*$)"
}
},
"com.amazonaws.ssm#DocumentVersionInfo": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The document name.</p>"
}
},
"DisplayName": {
"target": "com.amazonaws.ssm#DocumentDisplayName",
"traits": {
"smithy.api#documentation": "<p>The friendly name of the Systems Manager document. This value can differ for each version of the\n document. If you want to update this value, see <a>UpdateDocument</a>.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version.</p>"
}
},
"VersionName": {
"target": "com.amazonaws.ssm#DocumentVersionName",
"traits": {
"smithy.api#documentation": "<p>The version of the artifact associated with the document. For example, \"Release 12, Update\n 6\". This value is unique across all versions of a document, and cannot be changed.</p>"
}
},
"CreatedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the document was created.</p>"
}
},
"IsDefaultVersion": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#documentation": "<p>An identifier for the default version of the document.</p>"
}
},
"DocumentFormat": {
"target": "com.amazonaws.ssm#DocumentFormat",
"traits": {
"smithy.api#documentation": "<p>The document format, either JSON or YAML.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#DocumentStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the Systems Manager document, such as <code>Creating</code>, <code>Active</code>,\n <code>Failed</code>, and <code>Deleting</code>.</p>"
}
},
"StatusInformation": {
"target": "com.amazonaws.ssm#DocumentStatusInformation",
"traits": {
"smithy.api#documentation": "<p>A message returned by AWS Systems Manager that explains the <code>Status</code> value. For example, a\n <code>Failed</code> status might be explained by the <code>StatusInformation</code> message,\n \"The specified S3 bucket does not exist. Verify that the URL of the S3 bucket is correct.\"</p>"
}
},
"ReviewStatus": {
"target": "com.amazonaws.ssm#ReviewStatus",
"traits": {
"smithy.api#documentation": "<p>The current status of the approval review for the latest version of the document.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Version information about the document.</p>"
}
},
"com.amazonaws.ssm#DocumentVersionLimitExceeded": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The document has too many versions. Delete one or more document versions and try\n again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#DocumentVersionList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#DocumentVersionInfo"
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#DocumentVersionName": {
"type": "string",
"traits": {
"smithy.api#pattern": "^[a-zA-Z0-9_\\-.]{1,128}$"
}
},
"com.amazonaws.ssm#DocumentVersionNumber": {
"type": "string",
"traits": {
"smithy.api#pattern": "(^[1-9][0-9]*$)"
}
},
"com.amazonaws.ssm#DoesNotExistException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Error returned when the ID specified for a resource, such as a maintenance window or Patch\n baseline, doesn't exist.</p>\n <p>For information about resource quotas in Systems Manager, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/ssm.html#limits_ssm\">Systems Manager service quotas</a> in the\n <i>AWS General Reference</i>.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#DryRun": {
"type": "boolean"
},
"com.amazonaws.ssm#DuplicateDocumentContent": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The content of the association document matches another document. Change the content of the\n document and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#DuplicateDocumentVersionName": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The version name has already been used in this document. Specify a different version name,\n and then try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#DuplicateInstanceId": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>You cannot specify an instance ID in more than one association.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#EffectiveInstanceAssociationMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 5
}
}
},
"com.amazonaws.ssm#EffectivePatch": {
"type": "structure",
"members": {
"Patch": {
"target": "com.amazonaws.ssm#Patch",
"traits": {
"smithy.api#documentation": "<p>Provides metadata for a patch, including information such as the KB ID, severity,\n classification and a URL for where more information can be obtained about the patch.</p>"
}
},
"PatchStatus": {
"target": "com.amazonaws.ssm#PatchStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the patch in a patch baseline. This includes information about whether the\n patch is currently approved, due to be approved by a rule, explicitly approved, or explicitly\n rejected and the date the patch was or will be approved.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The EffectivePatch structure defines metadata about a patch along with the approval state of\n the patch in a particular patch baseline. The approval state includes information about whether\n the patch is currently approved, due to be approved by a rule, explicitly approved, or explicitly\n rejected and the date the patch was or will be approved.</p>"
}
},
"com.amazonaws.ssm#EffectivePatchList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#EffectivePatch"
}
},
"com.amazonaws.ssm#ErrorCount": {
"type": "integer"
},
"com.amazonaws.ssm#ExecutionMode": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Auto",
"name": "Auto"
},
{
"value": "Interactive",
"name": "Interactive"
}
]
}
},
"com.amazonaws.ssm#ExecutionRoleName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
},
"smithy.api#pattern": "[\\w+=,.@/-]+"
}
},
"com.amazonaws.ssm#ExpirationDate": {
"type": "timestamp"
},
"com.amazonaws.ssm#FailedCreateAssociation": {
"type": "structure",
"members": {
"Entry": {
"target": "com.amazonaws.ssm#CreateAssociationBatchRequestEntry",
"traits": {
"smithy.api#documentation": "<p>The association.</p>"
}
},
"Message": {
"target": "com.amazonaws.ssm#BatchErrorMessage",
"traits": {
"smithy.api#documentation": "<p>A description of the failure.</p>"
}
},
"Fault": {
"target": "com.amazonaws.ssm#Fault",
"traits": {
"smithy.api#documentation": "<p>The source of the failure.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes a failed association.</p>"
}
},
"com.amazonaws.ssm#FailedCreateAssociationList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#FailedCreateAssociation",
"traits": {
"smithy.api#xmlName": "FailedCreateAssociationEntry"
}
}
},
"com.amazonaws.ssm#FailureDetails": {
"type": "structure",
"members": {
"FailureStage": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The stage of the Automation execution when the failure occurred. The stages include the\n following: InputValidation, PreVerification, Invocation, PostVerification.</p>"
}
},
"FailureType": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The type of Automation failure. Failure types include the following: Action, Permission,\n Throttling, Verification, Internal.</p>"
}
},
"Details": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>Detailed information about the Automation step failure.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about an Automation failure.</p>"
}
},
"com.amazonaws.ssm#Fault": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Client",
"name": "Client"
},
{
"value": "Server",
"name": "Server"
},
{
"value": "Unknown",
"name": "Unknown"
}
]
}
},
"com.amazonaws.ssm#FeatureNotAvailableException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You attempted to register a LAMBDA or STEP_FUNCTIONS task in a region where the\n corresponding service is not available. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#GetAutomationExecution": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetAutomationExecutionRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetAutomationExecutionResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AutomationExecutionNotFoundException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Get detailed information about a particular Automation execution.</p>"
}
},
"com.amazonaws.ssm#GetAutomationExecutionRequest": {
"type": "structure",
"members": {
"AutomationExecutionId": {
"target": "com.amazonaws.ssm#AutomationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The unique identifier for an existing automation execution to examine. The execution ID is\n returned by StartAutomationExecution when the execution of an Automation document is\n initiated.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#GetAutomationExecutionResult": {
"type": "structure",
"members": {
"AutomationExecution": {
"target": "com.amazonaws.ssm#AutomationExecution",
"traits": {
"smithy.api#documentation": "<p>Detailed information about the current state of an automation execution.</p>"
}
}
}
},
"com.amazonaws.ssm#GetCalendarState": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetCalendarStateRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetCalendarStateResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentType"
},
{
"target": "com.amazonaws.ssm#UnsupportedCalendarException"
}
],
"traits": {
"smithy.api#documentation": "<p>Gets the state of the AWS Systems Manager Change Calendar at an optional, specified time. If you\n specify a time, <code>GetCalendarState</code> returns the state of the calendar at a specific\n time, and returns the next time that the Change Calendar state will transition. If you do not\n specify a time, <code>GetCalendarState</code> assumes the current time. Change Calendar entries\n have two possible states: <code>OPEN</code> or <code>CLOSED</code>.</p>\n <p>If you specify more than one calendar in a request, the command returns the status of\n <code>OPEN</code> only if all calendars in the request are open. If one or more calendars in the\n request are closed, the status returned is <code>CLOSED</code>.</p>\n <p>For more information about Systems Manager Change Calendar, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar.html\">AWS Systems Manager Change\n Calendar</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"com.amazonaws.ssm#GetCalendarStateRequest": {
"type": "structure",
"members": {
"CalendarNames": {
"target": "com.amazonaws.ssm#CalendarNameOrARNList",
"traits": {
"smithy.api#documentation": "<p>The names or Amazon Resource Names (ARNs) of the Systems Manager documents that represent the calendar\n entries for which you want to get the state.</p>",
"smithy.api#required": {}
}
},
"AtTime": {
"target": "com.amazonaws.ssm#ISO8601String",
"traits": {
"smithy.api#documentation": "<p>(Optional) The specific time for which you want to get calendar state information, in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format. If you do not add\n <code>AtTime</code>, the current time is assumed.</p>"
}
}
}
},
"com.amazonaws.ssm#GetCalendarStateResponse": {
"type": "structure",
"members": {
"State": {
"target": "com.amazonaws.ssm#CalendarState",
"traits": {
"smithy.api#documentation": "<p>The state of the calendar. An <code>OPEN</code> calendar indicates that actions are allowed\n to proceed, and a <code>CLOSED</code> calendar indicates that actions are not allowed to\n proceed.</p>"
}
},
"AtTime": {
"target": "com.amazonaws.ssm#ISO8601String",
"traits": {
"smithy.api#documentation": "<p>The time, as an <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> string,\n that you specified in your command. If you did not specify a time, <code>GetCalendarState</code>\n uses the current time.</p>"
}
},
"NextTransitionTime": {
"target": "com.amazonaws.ssm#ISO8601String",
"traits": {
"smithy.api#documentation": "<p>The time, as an <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> string,\n that the calendar state will change. If the current calendar state is <code>OPEN</code>,\n <code>NextTransitionTime</code> indicates when the calendar state changes to\n <code>CLOSED</code>, and vice-versa.</p>"
}
}
}
},
"com.amazonaws.ssm#GetCommandInvocation": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetCommandInvocationRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetCommandInvocationResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidCommandId"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidPluginName"
},
{
"target": "com.amazonaws.ssm#InvocationDoesNotExist"
}
],
"traits": {
"smithy.api#documentation": "<p>Returns detailed information about command execution for an invocation or plugin.</p>\n <p>\n <code>GetCommandInvocation</code> only gives the execution status of a plugin in a document.\n To get the command execution status on a specific instance, use <a>ListCommandInvocations</a>. To get the command execution status across instances, use\n <a>ListCommands</a>.</p>",
"smithy.waiters#waitable": {
"CommandExecuted": {
"acceptors": [
{
"state": "retry",
"matcher": {
"output": {
"path": "Status",
"expected": "Pending",
"comparator": "stringEquals"
}
}
},
{
"state": "retry",
"matcher": {
"output": {
"path": "Status",
"expected": "InProgress",
"comparator": "stringEquals"
}
}
},
{
"state": "retry",
"matcher": {
"output": {
"path": "Status",
"expected": "Delayed",
"comparator": "stringEquals"
}
}
},
{
"state": "success",
"matcher": {
"output": {
"path": "Status",
"expected": "Success",
"comparator": "stringEquals"
}
}
},
{
"state": "failure",
"matcher": {
"output": {
"path": "Status",
"expected": "Cancelled",
"comparator": "stringEquals"
}
}
},
{
"state": "failure",
"matcher": {
"output": {
"path": "Status",
"expected": "TimedOut",
"comparator": "stringEquals"
}
}
},
{
"state": "failure",
"matcher": {
"output": {
"path": "Status",
"expected": "Failed",
"comparator": "stringEquals"
}
}
},
{
"state": "failure",
"matcher": {
"output": {
"path": "Status",
"expected": "Cancelling",
"comparator": "stringEquals"
}
}
}
],
"minDelay": 5
}
}
}
},
"com.amazonaws.ssm#GetCommandInvocationRequest": {
"type": "structure",
"members": {
"CommandId": {
"target": "com.amazonaws.ssm#CommandId",
"traits": {
"smithy.api#documentation": "<p>(Required) The parent command ID of the invocation plugin.</p>",
"smithy.api#required": {}
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>(Required) The ID of the managed instance targeted by the command. A managed instance can be\n an Amazon Elastic Compute Cloud (Amazon EC2) instance or an instance in your hybrid environment that is configured for\n AWS Systems Manager.</p>",
"smithy.api#required": {}
}
},
"PluginName": {
"target": "com.amazonaws.ssm#CommandPluginName",
"traits": {
"smithy.api#documentation": "<p>The name of the plugin for which you want detailed results. If the document contains only\n one plugin, you can omit the name and details for that plugin. If the document contains more than\n one plugin, you must specify the name of the plugin for which you want to view details.</p>\n <p>Plugin names are also referred to as <i>step names</i> in Systems Manager documents. For\n example, <code>aws:RunShellScript</code> is a plugin.</p>\n <p>To find the <code>PluginName</code>, check the document content and find the name of the\n plugin. Alternatively, use <a>ListCommandInvocations</a> with the\n <code>CommandId</code> and <code>Details</code> parameters. The <code>PluginName</code> is the\n <code>Name</code> attribute of the <code>CommandPlugin</code> object in the\n <code>CommandPlugins</code> list.</p>"
}
}
}
},
"com.amazonaws.ssm#GetCommandInvocationResult": {
"type": "structure",
"members": {
"CommandId": {
"target": "com.amazonaws.ssm#CommandId",
"traits": {
"smithy.api#documentation": "<p>The parent command ID of the invocation plugin.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the managed instance targeted by the command. A managed instance can be an EC2\n instance or an instance in your hybrid environment that is configured for Systems Manager.</p>"
}
},
"Comment": {
"target": "com.amazonaws.ssm#Comment",
"traits": {
"smithy.api#documentation": "<p>The comment text for the command.</p>"
}
},
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the document that was run. For example, <code>AWS-RunShellScript</code>.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The SSM document version used in the request.</p>"
}
},
"PluginName": {
"target": "com.amazonaws.ssm#CommandPluginName",
"traits": {
"smithy.api#documentation": "<p>The name of the plugin, or <i>step name</i>, for which details are reported.\n For example, <code>aws:RunShellScript</code> is a plugin.</p>"
}
},
"ResponseCode": {
"target": "com.amazonaws.ssm#ResponseCode",
"traits": {
"smithy.api#documentation": "<p>The error level response code for the plugin script. If the response code is\n <code>-1</code>, then the command has not started running on the instance, or it was not received\n by the instance.</p>"
}
},
"ExecutionStartDateTime": {
"target": "com.amazonaws.ssm#StringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the plugin started running. Date and time are written in ISO 8601 format.\n For example, June 7, 2017 is represented as 2017-06-7. The following sample AWS CLI command uses\n the <code>InvokedBefore</code> filter.</p>\n <p>\n <code>aws ssm list-commands --filters key=InvokedBefore,value=2017-06-07T00:00:00Z</code>\n </p>\n <p>If the plugin has not started to run, the string is empty.</p>"
}
},
"ExecutionElapsedTime": {
"target": "com.amazonaws.ssm#StringDateTime",
"traits": {
"smithy.api#documentation": "<p>Duration since <code>ExecutionStartDateTime</code>.</p>"
}
},
"ExecutionEndDateTime": {
"target": "com.amazonaws.ssm#StringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the plugin finished running. Date and time are written in ISO 8601 format.\n For example, June 7, 2017 is represented as 2017-06-7. The following sample AWS CLI command uses\n the <code>InvokedAfter</code> filter.</p>\n <p>\n <code>aws ssm list-commands --filters key=InvokedAfter,value=2017-06-07T00:00:00Z</code>\n </p>\n <p>If the plugin has not started to run, the string is empty.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#CommandInvocationStatus",
"traits": {
"smithy.api#documentation": "<p>The status of this invocation plugin. This status can be different than\n <code>StatusDetails</code>.</p>"
}
},
"StatusDetails": {
"target": "com.amazonaws.ssm#StatusDetails",
"traits": {
"smithy.api#documentation": "<p>A detailed status of the command execution for an invocation. <code>StatusDetails</code>\n includes more information than <code>Status</code> because it includes states resulting from\n error and concurrency control parameters. <code>StatusDetails</code> can show different results\n than <code>Status</code>. For more information about these statuses, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html\">Understanding\n command statuses</a> in the <i>AWS Systems Manager User Guide</i>.\n <code>StatusDetails</code> can be one of the following values:</p>\n <ul>\n <li>\n <p>Pending: The command has not been sent to the instance.</p>\n </li>\n <li>\n <p>In Progress: The command has been sent to the instance but has not reached a terminal\n state.</p>\n </li>\n <li>\n <p>Delayed: The system attempted to send the command to the target, but the target was not\n available. The instance might not be available because of network issues, because the instance\n was stopped, or for similar reasons. The system will try to send the command again.</p>\n </li>\n <li>\n <p>Success: The command or plugin ran successfully. This is a terminal state.</p>\n </li>\n <li>\n <p>Delivery Timed Out: The command was not delivered to the instance before the delivery\n timeout expired. Delivery timeouts do not count against the parent command's\n <code>MaxErrors</code> limit, but they do contribute to whether the parent command status is\n Success or Incomplete. This is a terminal state.</p>\n </li>\n <li>\n <p>Execution Timed Out: The command started to run on the instance, but the execution was not\n complete before the timeout expired. Execution timeouts count against the\n <code>MaxErrors</code> limit of the parent command. This is a terminal state.</p>\n </li>\n <li>\n <p>Failed: The command wasn't run successfully on the instance. For a plugin, this indicates\n that the result code was not zero. For a command invocation, this indicates that the result\n code for one or more plugins was not zero. Invocation failures count against the\n <code>MaxErrors</code> limit of the parent command. This is a terminal state.</p>\n </li>\n <li>\n <p>Canceled: The command was terminated before it was completed. This is a terminal\n state.</p>\n </li>\n <li>\n <p>Undeliverable: The command can't be delivered to the instance. The instance might not\n exist or might not be responding. Undeliverable invocations don't count against the parent\n command's <code>MaxErrors</code> limit and don't contribute to whether the parent command\n status is Success or Incomplete. This is a terminal state.</p>\n </li>\n <li>\n <p>Terminated: The parent command exceeded its <code>MaxErrors</code> limit and subsequent\n command invocations were canceled by the system. This is a terminal state.</p>\n </li>\n </ul>"
}
},
"StandardOutputContent": {
"target": "com.amazonaws.ssm#StandardOutputContent",
"traits": {
"smithy.api#documentation": "<p>The first 24,000 characters written by the plugin to <code>stdout</code>. If the command has\n not finished running, if <code>ExecutionStatus</code> is neither Succeeded nor Failed, then this\n string is empty.</p>"
}
},
"StandardOutputUrl": {
"target": "com.amazonaws.ssm#Url",
"traits": {
"smithy.api#documentation": "<p>The URL for the complete text written by the plugin to <code>stdout</code> in Amazon Simple Storage Service\n (Amazon S3). If an S3 bucket was not specified, then this string is empty.</p>"
}
},
"StandardErrorContent": {
"target": "com.amazonaws.ssm#StandardErrorContent",
"traits": {
"smithy.api#documentation": "<p>The first 8,000 characters written by the plugin to <code>stderr</code>. If the command has\n not finished running, then this string is empty.</p>"
}
},
"StandardErrorUrl": {
"target": "com.amazonaws.ssm#Url",
"traits": {
"smithy.api#documentation": "<p>The URL for the complete text written by the plugin to <code>stderr</code>. If the command\n has not finished running, then this string is empty.</p>"
}
},
"CloudWatchOutputConfig": {
"target": "com.amazonaws.ssm#CloudWatchOutputConfig",
"traits": {
"smithy.api#documentation": "<p>CloudWatch Logs information where Systems Manager sent the command output.</p>"
}
}
}
},
"com.amazonaws.ssm#GetConnectionStatus": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetConnectionStatusRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetConnectionStatusResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the Session Manager connection status for an instance to determine whether it is running and\n ready to receive Session Manager connections.</p>"
}
},
"com.amazonaws.ssm#GetConnectionStatusRequest": {
"type": "structure",
"members": {
"Target": {
"target": "com.amazonaws.ssm#SessionTarget",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#GetConnectionStatusResponse": {
"type": "structure",
"members": {
"Target": {
"target": "com.amazonaws.ssm#SessionTarget",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance to check connection status. </p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#ConnectionStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the connection to the instance. For example, 'Connected' or 'Not\n Connected'.</p>"
}
}
}
},
"com.amazonaws.ssm#GetDefaultPatchBaseline": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetDefaultPatchBaselineRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetDefaultPatchBaselineResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the default patch baseline. Note that Systems Manager supports creating multiple default\n patch baselines. For example, you can create a default patch baseline for each operating\n system.</p>\n <p>If you do not specify an operating system value, the default patch baseline for Windows is\n returned.</p>"
}
},
"com.amazonaws.ssm#GetDefaultPatchBaselineRequest": {
"type": "structure",
"members": {
"OperatingSystem": {
"target": "com.amazonaws.ssm#OperatingSystem",
"traits": {
"smithy.api#documentation": "<p>Returns the default patch baseline for the specified operating system.</p>"
}
}
}
},
"com.amazonaws.ssm#GetDefaultPatchBaselineResult": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the default patch baseline.</p>"
}
},
"OperatingSystem": {
"target": "com.amazonaws.ssm#OperatingSystem",
"traits": {
"smithy.api#documentation": "<p>The operating system for the returned patch baseline. </p>"
}
}
}
},
"com.amazonaws.ssm#GetDeployablePatchSnapshotForInstance": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetDeployablePatchSnapshotForInstanceRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetDeployablePatchSnapshotForInstanceResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#UnsupportedFeatureRequiredException"
},
{
"target": "com.amazonaws.ssm#UnsupportedOperatingSystem"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the current snapshot for the patch baseline the instance uses. This API is\n primarily used by the AWS-RunPatchBaseline Systems Manager document. </p>"
}
},
"com.amazonaws.ssm#GetDeployablePatchSnapshotForInstanceRequest": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance for which the appropriate patch snapshot should be retrieved.</p>",
"smithy.api#required": {}
}
},
"SnapshotId": {
"target": "com.amazonaws.ssm#SnapshotId",
"traits": {
"smithy.api#documentation": "<p>The user-defined snapshot ID.</p>",
"smithy.api#required": {}
}
},
"BaselineOverride": {
"target": "com.amazonaws.ssm#BaselineOverride",
"traits": {
"smithy.api#documentation": "<p>Defines the basic information about a patch baseline override.</p>"
}
}
}
},
"com.amazonaws.ssm#GetDeployablePatchSnapshotForInstanceResult": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance.</p>"
}
},
"SnapshotId": {
"target": "com.amazonaws.ssm#SnapshotId",
"traits": {
"smithy.api#documentation": "<p>The user-defined snapshot ID.</p>"
}
},
"SnapshotDownloadUrl": {
"target": "com.amazonaws.ssm#SnapshotDownloadUrl",
"traits": {
"smithy.api#documentation": "<p>A pre-signed Amazon S3 URL that can be used to download the patch snapshot.</p>"
}
},
"Product": {
"target": "com.amazonaws.ssm#Product",
"traits": {
"smithy.api#documentation": "<p>Returns the specific operating system (for example Windows Server 2012 or Amazon Linux\n 2015.09) on the instance for the specified patch snapshot.</p>"
}
}
}
},
"com.amazonaws.ssm#GetDocument": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetDocumentRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetDocumentResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentVersion"
}
],
"traits": {
"smithy.api#documentation": "<p>Gets the contents of the specified Systems Manager document.</p>"
}
},
"com.amazonaws.ssm#GetDocumentRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document.</p>",
"smithy.api#required": {}
}
},
"VersionName": {
"target": "com.amazonaws.ssm#DocumentVersionName",
"traits": {
"smithy.api#documentation": "<p>An optional field specifying the version of the artifact associated with the document. For\n example, \"Release 12, Update 6\". This value is unique across all versions of a document and can't\n be changed.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version for which you want information.</p>"
}
},
"DocumentFormat": {
"target": "com.amazonaws.ssm#DocumentFormat",
"traits": {
"smithy.api#documentation": "<p>Returns the document in the specified format. The document format can be either JSON or\n YAML. JSON is the default format.</p>"
}
}
}
},
"com.amazonaws.ssm#GetDocumentResult": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document.</p>"
}
},
"CreatedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the Systems Manager document was created.</p>"
}
},
"DisplayName": {
"target": "com.amazonaws.ssm#DocumentDisplayName",
"traits": {
"smithy.api#documentation": "<p>The friendly name of the Systems Manager document. This value can differ for each version of the\n document. If you want to update this value, see <a>UpdateDocument</a>.</p>"
}
},
"VersionName": {
"target": "com.amazonaws.ssm#DocumentVersionName",
"traits": {
"smithy.api#documentation": "<p>The version of the artifact associated with the document. For example, \"Release 12, Update\n 6\". This value is unique across all versions of a document, and cannot be changed.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#DocumentStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the Systems Manager document, such as <code>Creating</code>, <code>Active</code>,\n <code>Updating</code>, <code>Failed</code>, and <code>Deleting</code>.</p>"
}
},
"StatusInformation": {
"target": "com.amazonaws.ssm#DocumentStatusInformation",
"traits": {
"smithy.api#documentation": "<p>A message returned by AWS Systems Manager that explains the <code>Status</code> value. For example, a\n <code>Failed</code> status might be explained by the <code>StatusInformation</code> message,\n \"The specified S3 bucket does not exist. Verify that the URL of the S3 bucket is correct.\"</p>"
}
},
"Content": {
"target": "com.amazonaws.ssm#DocumentContent",
"traits": {
"smithy.api#documentation": "<p>The contents of the Systems Manager document.</p>"
}
},
"DocumentType": {
"target": "com.amazonaws.ssm#DocumentType",
"traits": {
"smithy.api#documentation": "<p>The document type.</p>"
}
},
"DocumentFormat": {
"target": "com.amazonaws.ssm#DocumentFormat",
"traits": {
"smithy.api#documentation": "<p>The document format, either JSON or YAML.</p>"
}
},
"Requires": {
"target": "com.amazonaws.ssm#DocumentRequiresList",
"traits": {
"smithy.api#documentation": "<p>A list of SSM documents required by a document. For example, an\n <code>ApplicationConfiguration</code> document requires an\n <code>ApplicationConfigurationSchema</code> document.</p>"
}
},
"AttachmentsContent": {
"target": "com.amazonaws.ssm#AttachmentContentList",
"traits": {
"smithy.api#documentation": "<p>A description of the document attachments, including names, locations, sizes, and so\n on.</p>"
}
},
"ReviewStatus": {
"target": "com.amazonaws.ssm#ReviewStatus",
"traits": {
"smithy.api#documentation": "<p>The current review status of a new custom Systems Manager document (SSM document) created by a member\n of your organization, or of the latest version of an existing SSM document.</p>\n <p>Only one version of an SSM document can be in the APPROVED state at a time. When a new\n version is approved, the status of the previous version changes to REJECTED.</p>\n <p>Only one version of an SSM document can be in review, or PENDING, at a time.</p>"
}
}
}
},
"com.amazonaws.ssm#GetInventory": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetInventoryRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetInventoryResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidAggregatorException"
},
{
"target": "com.amazonaws.ssm#InvalidFilter"
},
{
"target": "com.amazonaws.ssm#InvalidInventoryGroupException"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
},
{
"target": "com.amazonaws.ssm#InvalidResultAttributeException"
},
{
"target": "com.amazonaws.ssm#InvalidTypeNameException"
}
],
"traits": {
"smithy.api#documentation": "<p>Query inventory information.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Entities",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#GetInventoryRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#InventoryFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more filters. Use a filter to return a more specific list of results.</p>"
}
},
"Aggregators": {
"target": "com.amazonaws.ssm#InventoryAggregatorList",
"traits": {
"smithy.api#documentation": "<p>Returns counts of inventory types based on one or more expressions. For example, if you\n aggregate by using an expression that uses the <code>AWS:InstanceInformation.PlatformType</code>\n type, you can see a count of how many Windows and Linux instances exist in your inventoried\n fleet.</p>"
}
},
"ResultAttributes": {
"target": "com.amazonaws.ssm#ResultAttributeList",
"traits": {
"smithy.api#documentation": "<p>The list of inventory item types to return.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#GetInventoryResult": {
"type": "structure",
"members": {
"Entities": {
"target": "com.amazonaws.ssm#InventoryResultEntityList",
"traits": {
"smithy.api#documentation": "<p>Collection of inventory entities such as a collection of instance inventory. </p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#GetInventorySchema": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetInventorySchemaRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetInventorySchemaResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
},
{
"target": "com.amazonaws.ssm#InvalidTypeNameException"
}
],
"traits": {
"smithy.api#documentation": "<p>Return a list of inventory type names for the account, or return a list of attribute names\n for a specific Inventory item type.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Schemas",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#GetInventorySchemaMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 50,
"max": 200
}
}
},
"com.amazonaws.ssm#GetInventorySchemaRequest": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeNameFilter",
"traits": {
"smithy.api#documentation": "<p>The type of inventory item to return.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#GetInventorySchemaMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"Aggregator": {
"target": "com.amazonaws.ssm#AggregatorSchemaOnly",
"traits": {
"smithy.api#documentation": "<p>Returns inventory schemas that support aggregation. For example, this call returns the\n <code>AWS:InstanceInformation</code> type, because it supports aggregation based on the\n <code>PlatformName</code>, <code>PlatformType</code>, and <code>PlatformVersion</code>\n attributes.</p>"
}
},
"SubType": {
"target": "com.amazonaws.ssm#IsSubTypeSchema",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Returns the sub-type schema for a specified inventory type.</p>"
}
}
}
},
"com.amazonaws.ssm#GetInventorySchemaResult": {
"type": "structure",
"members": {
"Schemas": {
"target": "com.amazonaws.ssm#InventoryItemSchemaResultList",
"traits": {
"smithy.api#documentation": "<p>Inventory schemas returned by the request.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#GetMaintenanceWindow": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetMaintenanceWindowRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetMaintenanceWindowResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves a maintenance window.</p>"
}
},
"com.amazonaws.ssm#GetMaintenanceWindowExecution": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetMaintenanceWindowExecutionRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetMaintenanceWindowExecutionResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves details about a specific a maintenance window execution.</p>"
}
},
"com.amazonaws.ssm#GetMaintenanceWindowExecutionRequest": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution that includes the task.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#GetMaintenanceWindowExecutionResult": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution.</p>"
}
},
"TaskIds": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskIdList",
"traits": {
"smithy.api#documentation": "<p>The ID of the task executions from the maintenance window execution.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the maintenance window execution.</p>"
}
},
"StatusDetails": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatusDetails",
"traits": {
"smithy.api#documentation": "<p>The details explaining the Status. Only available for certain status values.</p>"
}
},
"StartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the maintenance window started running.</p>"
}
},
"EndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the maintenance window finished running.</p>"
}
}
}
},
"com.amazonaws.ssm#GetMaintenanceWindowExecutionTask": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetMaintenanceWindowExecutionTaskRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetMaintenanceWindowExecutionTaskResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the details about a specific task run as part of a maintenance window\n execution.</p>"
}
},
"com.amazonaws.ssm#GetMaintenanceWindowExecutionTaskInvocation": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetMaintenanceWindowExecutionTaskInvocationRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetMaintenanceWindowExecutionTaskInvocationResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves information about a specific task running on a specific target.</p>"
}
},
"com.amazonaws.ssm#GetMaintenanceWindowExecutionTaskInvocationRequest": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution for which the task is a part.</p>",
"smithy.api#required": {}
}
},
"TaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskId",
"traits": {
"smithy.api#documentation": "<p>The ID of the specific task in the maintenance window task that should be retrieved. </p>",
"smithy.api#required": {}
}
},
"InvocationId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationId",
"traits": {
"smithy.api#documentation": "<p>The invocation ID to retrieve.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#GetMaintenanceWindowExecutionTaskInvocationResult": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The maintenance window execution ID.</p>"
}
},
"TaskExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskId",
"traits": {
"smithy.api#documentation": "<p>The task execution ID.</p>"
}
},
"InvocationId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationId",
"traits": {
"smithy.api#documentation": "<p>The invocation ID.</p>"
}
},
"ExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskExecutionId",
"traits": {
"smithy.api#documentation": "<p>The execution ID.</p>"
}
},
"TaskType": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskType",
"traits": {
"smithy.api#documentation": "<p>Retrieves the task type for a maintenance window. Task types include the following: LAMBDA,\n STEP_FUNCTIONS, AUTOMATION, RUN_COMMAND.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters used at the time that the task ran.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatus",
"traits": {
"smithy.api#documentation": "<p>The task status for an invocation.</p>"
}
},
"StatusDetails": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatusDetails",
"traits": {
"smithy.api#documentation": "<p>The details explaining the status. Details are only available for certain status\n values.</p>"
}
},
"StartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time that the task started running on the target.</p>"
}
},
"EndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time that the task finished running on the target.</p>"
}
},
"OwnerInformation": {
"target": "com.amazonaws.ssm#OwnerInformation",
"traits": {
"smithy.api#documentation": "<p>User-provided value to be included in any CloudWatch events raised while running tasks for\n these targets in this maintenance window. </p>"
}
},
"WindowTargetId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskTargetId",
"traits": {
"smithy.api#documentation": "<p>The maintenance window target ID.</p>"
}
}
}
},
"com.amazonaws.ssm#GetMaintenanceWindowExecutionTaskRequest": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution that includes the task.</p>",
"smithy.api#required": {}
}
},
"TaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskId",
"traits": {
"smithy.api#documentation": "<p>The ID of the specific task execution in the maintenance window task that should be\n retrieved.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#GetMaintenanceWindowExecutionTaskResult": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution that includes the task.</p>"
}
},
"TaskExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskId",
"traits": {
"smithy.api#documentation": "<p>The ID of the specific task execution in the maintenance window task that was\n retrieved.</p>"
}
},
"TaskArn": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskArn",
"traits": {
"smithy.api#documentation": "<p>The ARN of the task that ran.</p>"
}
},
"ServiceRole": {
"target": "com.amazonaws.ssm#ServiceRole",
"traits": {
"smithy.api#documentation": "<p>The role that was assumed when running the task.</p>"
}
},
"Type": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskType",
"traits": {
"smithy.api#documentation": "<p>The type of task that was run.</p>"
}
},
"TaskParameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParametersList",
"traits": {
"smithy.api#documentation": "<p>The parameters passed to the task when it was run.</p>\n <note>\n <p>\n <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,\n instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information\n about how Systems Manager handles these options for the supported maintenance window task\n types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>\n <p>The map has the following format:</p>\n <p>Key: string, between 1 and 255 characters</p>\n <p>Value: an array of strings, each string is between 1 and 255 characters</p>"
}
},
"Priority": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskPriority",
"traits": {
"smithy.api#documentation": "<p>The priority of the task.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The defined maximum number of task executions that could be run in parallel.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The defined maximum number of task execution errors allowed before scheduling of the task\n execution would have been stopped.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the task.</p>"
}
},
"StatusDetails": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatusDetails",
"traits": {
"smithy.api#documentation": "<p>The details explaining the Status. Only available for certain status values.</p>"
}
},
"StartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the task execution started.</p>"
}
},
"EndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the task execution completed.</p>"
}
}
}
},
"com.amazonaws.ssm#GetMaintenanceWindowRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window for which you want to retrieve information.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#GetMaintenanceWindowResult": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the created maintenance window.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The name of the maintenance window.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>The description of the maintenance window.</p>"
}
},
"StartDate": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled\n to become active. The maintenance window will not run before this specified time.</p>"
}
},
"EndDate": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled\n to become inactive. The maintenance window will not run after this specified time.</p>"
}
},
"Schedule": {
"target": "com.amazonaws.ssm#MaintenanceWindowSchedule",
"traits": {
"smithy.api#documentation": "<p>The schedule of the maintenance window in the form of a cron or rate expression.</p>"
}
},
"ScheduleTimezone": {
"target": "com.amazonaws.ssm#MaintenanceWindowTimezone",
"traits": {
"smithy.api#documentation": "<p>The time zone that the scheduled maintenance window executions are based on, in Internet\n Assigned Numbers Authority (IANA) format. For example: \"America/Los_Angeles\", \"UTC\", or\n \"Asia/Seoul\". For more information, see the <a href=\"https://www.iana.org/time-zones\">Time\n Zone Database</a> on the IANA website.</p>"
}
},
"ScheduleOffset": {
"target": "com.amazonaws.ssm#MaintenanceWindowOffset",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of days to wait to run a maintenance window after the scheduled CRON expression\n date and time.</p>"
}
},
"NextExecutionTime": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The next time the maintenance window will actually run, taking into account any specified\n times for the maintenance window to become active or inactive.</p>"
}
},
"Duration": {
"target": "com.amazonaws.ssm#MaintenanceWindowDurationHours",
"traits": {
"smithy.api#documentation": "<p>The duration of the maintenance window in hours.</p>"
}
},
"Cutoff": {
"target": "com.amazonaws.ssm#MaintenanceWindowCutoff",
"traits": {
"smithy.api#documentation": "<p>The number of hours before the end of the maintenance window that Systems Manager stops scheduling new\n tasks for execution.</p>"
}
},
"AllowUnassociatedTargets": {
"target": "com.amazonaws.ssm#MaintenanceWindowAllowUnassociatedTargets",
"traits": {
"smithy.api#documentation": "<p>Whether targets must be registered with the maintenance window before tasks can be defined\n for those targets.</p>"
}
},
"Enabled": {
"target": "com.amazonaws.ssm#MaintenanceWindowEnabled",
"traits": {
"smithy.api#documentation": "<p>Indicates whether the maintenance window is enabled.</p>"
}
},
"CreatedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the maintenance window was created.</p>"
}
},
"ModifiedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the maintenance window was last modified.</p>"
}
}
}
},
"com.amazonaws.ssm#GetMaintenanceWindowTask": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetMaintenanceWindowTaskRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetMaintenanceWindowTaskResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists the tasks in a maintenance window.</p>\n <note>\n <p>For maintenance window tasks without a specified target, you cannot supply values for\n <code>--max-errors</code> and <code>--max-concurrency</code>. Instead, the system inserts a\n placeholder value of <code>1</code>, which may be reported in the response to this command.\n These values do not affect the running of your task and can be ignored.</p>\n </note>"
}
},
"com.amazonaws.ssm#GetMaintenanceWindowTaskRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The maintenance window ID that includes the task to retrieve.</p>",
"smithy.api#required": {}
}
},
"WindowTaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskId",
"traits": {
"smithy.api#documentation": "<p>The maintenance window task ID to retrieve.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#GetMaintenanceWindowTaskResult": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The retrieved maintenance window ID.</p>"
}
},
"WindowTaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskId",
"traits": {
"smithy.api#documentation": "<p>The retrieved maintenance window task ID.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets where the task should run.</p>"
}
},
"TaskArn": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskArn",
"traits": {
"smithy.api#documentation": "<p>The resource that the task used during execution. For RUN_COMMAND and AUTOMATION task types,\n the TaskArn is the Systems Manager Document name/ARN. For LAMBDA tasks, the value is the function name/ARN.\n For STEP_FUNCTIONS tasks, the value is the state machine ARN.</p>"
}
},
"ServiceRoleArn": {
"target": "com.amazonaws.ssm#ServiceRole",
"traits": {
"smithy.api#documentation": "<p>The ARN of the IAM service role to use to publish Amazon Simple Notification Service (Amazon SNS) notifications for\n maintenance window Run Command tasks.</p>"
}
},
"TaskType": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskType",
"traits": {
"smithy.api#documentation": "<p>The type of task to run.</p>"
}
},
"TaskParameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters to pass to the task when it runs.</p>\n <note>\n <p>\n <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,\n instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information\n about how Systems Manager handles these options for the supported maintenance window task\n types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>"
}
},
"TaskInvocationParameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskInvocationParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters to pass to the task when it runs.</p>"
}
},
"Priority": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskPriority",
"traits": {
"smithy.api#documentation": "<p>The priority of the task when it runs. The lower the number, the higher the priority. Tasks\n that have the same priority are scheduled in parallel.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of targets allowed to run this task in parallel.</p>\n <note>\n <p>For maintenance window tasks without a target specified, you cannot supply a value for this\n option. Instead, the system inserts a placeholder value of <code>1</code>, which may be reported\n in the response to this command. This value does not affect the running of your task and can be\n ignored.</p>\n </note>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The maximum number of errors allowed before the task stops being scheduled.</p>\n <note>\n <p>For maintenance window tasks without a target specified, you cannot supply a value for this\n option. Instead, the system inserts a placeholder value of <code>1</code>, which may be reported\n in the response to this command. This value does not affect the running of your task and can be\n ignored.</p>\n </note>"
}
},
"LoggingInfo": {
"target": "com.amazonaws.ssm#LoggingInfo",
"traits": {
"smithy.api#documentation": "<p>The location in Amazon S3 where the task results are logged.</p>\n <note>\n <p>\n <code>LoggingInfo</code> has been deprecated. To specify an S3 bucket to contain logs, instead use the\n <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.\n For information about how Systems Manager handles these options for the supported maintenance\n window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The retrieved task name.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>The retrieved task description.</p>"
}
}
}
},
"com.amazonaws.ssm#GetOpsItem": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetOpsItemRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetOpsItemResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsItemNotFoundException"
}
],
"traits": {
"smithy.api#documentation": "<p>Get information about an OpsItem by using the ID. You must have permission in AWS Identity\n and Access Management (IAM) to view information about an OpsItem. For more information, see\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html\">Getting started with\n OpsCenter</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n <p>Operations engineers and IT professionals use OpsCenter to view, investigate, and remediate\n operational issues impacting the performance and health of their AWS resources. For more\n information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html\">AWS Systems Manager OpsCenter</a> in the\n <i>AWS Systems Manager User Guide</i>. </p>"
}
},
"com.amazonaws.ssm#GetOpsItemRequest": {
"type": "structure",
"members": {
"OpsItemId": {
"target": "com.amazonaws.ssm#OpsItemId",
"traits": {
"smithy.api#documentation": "<p>The ID of the OpsItem that you want to get.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#GetOpsItemResponse": {
"type": "structure",
"members": {
"OpsItem": {
"target": "com.amazonaws.ssm#OpsItem",
"traits": {
"smithy.api#documentation": "<p>The OpsItem.</p>"
}
}
}
},
"com.amazonaws.ssm#GetOpsMetadata": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetOpsMetadataRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetOpsMetadataResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsMetadataInvalidArgumentException"
},
{
"target": "com.amazonaws.ssm#OpsMetadataNotFoundException"
}
],
"traits": {
"smithy.api#documentation": "<p>View operational metadata related to an application in Application Manager.</p>"
}
},
"com.amazonaws.ssm#GetOpsMetadataMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#GetOpsMetadataRequest": {
"type": "structure",
"members": {
"OpsMetadataArn": {
"target": "com.amazonaws.ssm#OpsMetadataArn",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an OpsMetadata Object to view.</p>",
"smithy.api#required": {}
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#GetOpsMetadataMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#GetOpsMetadataResult": {
"type": "structure",
"members": {
"ResourceId": {
"target": "com.amazonaws.ssm#OpsMetadataResourceId",
"traits": {
"smithy.api#documentation": "<p>The resource ID of the Application Manager application.</p>"
}
},
"Metadata": {
"target": "com.amazonaws.ssm#MetadataMap",
"traits": {
"smithy.api#documentation": "<p>OpsMetadata for an Application Manager application.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#GetOpsSummary": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetOpsSummaryRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetOpsSummaryResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidAggregatorException"
},
{
"target": "com.amazonaws.ssm#InvalidFilter"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
},
{
"target": "com.amazonaws.ssm#InvalidTypeNameException"
},
{
"target": "com.amazonaws.ssm#ResourceDataSyncNotFoundException"
}
],
"traits": {
"smithy.api#documentation": "<p>View a summary of OpsItems based on specified filters and aggregators.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Entities",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#GetOpsSummaryRequest": {
"type": "structure",
"members": {
"SyncName": {
"target": "com.amazonaws.ssm#ResourceDataSyncName",
"traits": {
"smithy.api#documentation": "<p>Specify the name of a resource data sync to get.</p>"
}
},
"Filters": {
"target": "com.amazonaws.ssm#OpsFilterList",
"traits": {
"smithy.api#documentation": "<p>Optional filters used to scope down the returned OpsItems. </p>"
}
},
"Aggregators": {
"target": "com.amazonaws.ssm#OpsAggregatorList",
"traits": {
"smithy.api#documentation": "<p>Optional aggregators that return counts of OpsItems based on one or more expressions.</p>"
}
},
"ResultAttributes": {
"target": "com.amazonaws.ssm#OpsResultAttributeList",
"traits": {
"smithy.api#documentation": "<p>The OpsItem data type to return.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#GetOpsSummaryResult": {
"type": "structure",
"members": {
"Entities": {
"target": "com.amazonaws.ssm#OpsEntityList",
"traits": {
"smithy.api#documentation": "<p>The list of aggregated and filtered OpsItems.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#GetParameter": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetParameterRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetParameterResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidKeyId"
},
{
"target": "com.amazonaws.ssm#ParameterNotFound"
},
{
"target": "com.amazonaws.ssm#ParameterVersionNotFound"
}
],
"traits": {
"smithy.api#documentation": "<p>Get information about a parameter by using the parameter name. Don't confuse this API action\n with the <a>GetParameters</a> API action.</p>"
}
},
"com.amazonaws.ssm#GetParameterHistory": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetParameterHistoryRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetParameterHistoryResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidKeyId"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
},
{
"target": "com.amazonaws.ssm#ParameterNotFound"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the history of all changes to a parameter.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#GetParameterHistoryRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#PSParameterName",
"traits": {
"smithy.api#documentation": "<p>The name of the parameter for which you want to review history.</p>",
"smithy.api#required": {}
}
},
"WithDecryption": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Return decrypted values for secure string parameters. This flag is ignored for String and\n StringList parameter types.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#GetParameterHistoryResult": {
"type": "structure",
"members": {
"Parameters": {
"target": "com.amazonaws.ssm#ParameterHistoryList",
"traits": {
"smithy.api#documentation": "<p>A list of parameters returned by the request.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#GetParameterRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#PSParameterName",
"traits": {
"smithy.api#documentation": "<p>The name of the parameter you want to query.</p>",
"smithy.api#required": {}
}
},
"WithDecryption": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Return decrypted values for secure string parameters. This flag is ignored for String and\n StringList parameter types.</p>"
}
}
}
},
"com.amazonaws.ssm#GetParameterResult": {
"type": "structure",
"members": {
"Parameter": {
"target": "com.amazonaws.ssm#Parameter",
"traits": {
"smithy.api#documentation": "<p>Information about a parameter.</p>"
}
}
}
},
"com.amazonaws.ssm#GetParameters": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetParametersRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetParametersResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidKeyId"
}
],
"traits": {
"smithy.api#documentation": "<p>Get details of a parameter. Don't confuse this API action with the <a>GetParameter</a> API action.</p>"
}
},
"com.amazonaws.ssm#GetParametersByPath": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetParametersByPathRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetParametersByPathResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilterKey"
},
{
"target": "com.amazonaws.ssm#InvalidFilterOption"
},
{
"target": "com.amazonaws.ssm#InvalidFilterValue"
},
{
"target": "com.amazonaws.ssm#InvalidKeyId"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieve information about one or more parameters in a specific hierarchy. </p>\n <note>\n <p>Request results are returned on a best-effort basis. If you specify <code>MaxResults</code>\n in the request, the response includes information up to the limit specified. The number of items\n returned, however, can be between zero and the value of <code>MaxResults</code>. If the service\n reaches an internal limit while processing the results, it stops the operation and returns the\n matching values up to that point and a <code>NextToken</code>. You can specify the\n <code>NextToken</code> in a subsequent call to get the next set of results.</p>\n </note>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#GetParametersByPathMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#GetParametersByPathRequest": {
"type": "structure",
"members": {
"Path": {
"target": "com.amazonaws.ssm#PSParameterName",
"traits": {
"smithy.api#documentation": "<p>The hierarchy for the parameter. Hierarchies start with a forward slash (/). The hierachy is\n the parameter name except the last part of the parameter. For the API call to succeeed, the last\n part of the parameter name cannot be in the path. A parameter name hierarchy can have a maximum\n of 15 levels. Here is an example of a hierarchy: <code>/Finance/Prod/IAD/WinServ2016/license33\n </code>\n </p>",
"smithy.api#required": {}
}
},
"Recursive": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Retrieve all parameters within a hierarchy.</p>\n <important>\n <p>If a user has access to a path, then the user can access all levels of that path. For\n example, if a user has permission to access path <code>/a</code>, then the user can also access\n <code>/a/b</code>. Even if a user has explicitly been denied access in IAM for parameter\n <code>/a/b</code>, they can still call the GetParametersByPath API action recursively for\n <code>/a</code> and view <code>/a/b</code>.</p>\n </important>"
}
},
"ParameterFilters": {
"target": "com.amazonaws.ssm#ParameterStringFilterList",
"traits": {
"smithy.api#documentation": "<p>Filters to limit the request results.</p>\n <note>\n <p>For <code>GetParametersByPath</code>, the following filter <code>Key</code> names are\n supported: <code>Type</code>, <code>KeyId</code>, <code>Label</code>, and\n <code>DataType</code>.</p>\n <p>The following <code>Key</code> values are not supported for\n <code>GetParametersByPath</code>: <code>tag</code>, <code>Name</code>, <code>Path</code>, and\n <code>Tier</code>.</p>\n </note>"
}
},
"WithDecryption": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Retrieve all parameters in a hierarchy with their value decrypted.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#GetParametersByPathMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
}
}
},
"com.amazonaws.ssm#GetParametersByPathResult": {
"type": "structure",
"members": {
"Parameters": {
"target": "com.amazonaws.ssm#ParameterList",
"traits": {
"smithy.api#documentation": "<p>A list of parameters found in the specified hierarchy.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#GetParametersRequest": {
"type": "structure",
"members": {
"Names": {
"target": "com.amazonaws.ssm#ParameterNameList",
"traits": {
"smithy.api#documentation": "<p>Names of the parameters for which you want to query information.</p>",
"smithy.api#required": {}
}
},
"WithDecryption": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Return decrypted secure string value. Return decrypted values for secure string parameters.\n This flag is ignored for String and StringList parameter types.</p>"
}
}
}
},
"com.amazonaws.ssm#GetParametersResult": {
"type": "structure",
"members": {
"Parameters": {
"target": "com.amazonaws.ssm#ParameterList",
"traits": {
"smithy.api#documentation": "<p>A list of details for a parameter.</p>"
}
},
"InvalidParameters": {
"target": "com.amazonaws.ssm#ParameterNameList",
"traits": {
"smithy.api#documentation": "<p>A list of parameters that are not formatted correctly or do not run during an\n execution.</p>"
}
}
}
},
"com.amazonaws.ssm#GetPatchBaseline": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetPatchBaselineRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetPatchBaselineResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidResourceId"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves information about a patch baseline.</p>"
}
},
"com.amazonaws.ssm#GetPatchBaselineForPatchGroup": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetPatchBaselineForPatchGroupRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetPatchBaselineForPatchGroupResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves the patch baseline that should be used for the specified patch group.</p>"
}
},
"com.amazonaws.ssm#GetPatchBaselineForPatchGroupRequest": {
"type": "structure",
"members": {
"PatchGroup": {
"target": "com.amazonaws.ssm#PatchGroup",
"traits": {
"smithy.api#documentation": "<p>The name of the patch group whose patch baseline should be retrieved.</p>",
"smithy.api#required": {}
}
},
"OperatingSystem": {
"target": "com.amazonaws.ssm#OperatingSystem",
"traits": {
"smithy.api#documentation": "<p>Returns he operating system rule specified for patch groups using the patch baseline.</p>"
}
}
}
},
"com.amazonaws.ssm#GetPatchBaselineForPatchGroupResult": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline that should be used for the patch group.</p>"
}
},
"PatchGroup": {
"target": "com.amazonaws.ssm#PatchGroup",
"traits": {
"smithy.api#documentation": "<p>The name of the patch group.</p>"
}
},
"OperatingSystem": {
"target": "com.amazonaws.ssm#OperatingSystem",
"traits": {
"smithy.api#documentation": "<p>The operating system rule specified for patch groups using the patch baseline.</p>"
}
}
}
},
"com.amazonaws.ssm#GetPatchBaselineRequest": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline to retrieve.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#GetPatchBaselineResult": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the retrieved patch baseline.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#BaselineName",
"traits": {
"smithy.api#documentation": "<p>The name of the patch baseline.</p>"
}
},
"OperatingSystem": {
"target": "com.amazonaws.ssm#OperatingSystem",
"traits": {
"smithy.api#documentation": "<p>Returns the operating system specified for the patch baseline.</p>"
}
},
"GlobalFilters": {
"target": "com.amazonaws.ssm#PatchFilterGroup",
"traits": {
"smithy.api#documentation": "<p>A set of global filters used to exclude patches from the baseline.</p>"
}
},
"ApprovalRules": {
"target": "com.amazonaws.ssm#PatchRuleGroup",
"traits": {
"smithy.api#documentation": "<p>A set of rules used to include patches in the baseline.</p>"
}
},
"ApprovedPatches": {
"target": "com.amazonaws.ssm#PatchIdList",
"traits": {
"smithy.api#documentation": "<p>A list of explicitly approved patches for the baseline.</p>"
}
},
"ApprovedPatchesComplianceLevel": {
"target": "com.amazonaws.ssm#PatchComplianceLevel",
"traits": {
"smithy.api#documentation": "<p>Returns the specified compliance severity level for approved patches in the patch\n baseline.</p>"
}
},
"ApprovedPatchesEnableNonSecurity": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Indicates whether the list of approved patches includes non-security updates that should be\n applied to the instances. The default value is 'false'. Applies to Linux instances only.</p>"
}
},
"RejectedPatches": {
"target": "com.amazonaws.ssm#PatchIdList",
"traits": {
"smithy.api#documentation": "<p>A list of explicitly rejected patches for the baseline.</p>"
}
},
"RejectedPatchesAction": {
"target": "com.amazonaws.ssm#PatchAction",
"traits": {
"smithy.api#documentation": "<p>The action specified to take on patches included in the RejectedPatches list. A patch can be\n allowed only if it is a dependency of another package, or blocked entirely along with packages\n that include it as a dependency.</p>"
}
},
"PatchGroups": {
"target": "com.amazonaws.ssm#PatchGroupList",
"traits": {
"smithy.api#documentation": "<p>Patch groups included in the patch baseline.</p>"
}
},
"CreatedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the patch baseline was created.</p>"
}
},
"ModifiedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the patch baseline was last modified.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#BaselineDescription",
"traits": {
"smithy.api#documentation": "<p>A description of the patch baseline.</p>"
}
},
"Sources": {
"target": "com.amazonaws.ssm#PatchSourceList",
"traits": {
"smithy.api#documentation": "<p>Information about the patches to use to update the instances, including target operating\n systems and source repositories. Applies to Linux instances only.</p>"
}
}
}
},
"com.amazonaws.ssm#GetServiceSetting": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#GetServiceSettingRequest"
},
"output": {
"target": "com.amazonaws.ssm#GetServiceSettingResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ServiceSettingNotFound"
}
],
"traits": {
"smithy.api#documentation": "<p>\n <code>ServiceSetting</code> is an account-level setting for an AWS service. This setting\n defines how a user interacts with or uses a service or a feature of a service. For example, if an\n AWS service charges money to the account based on feature or service usage, then the AWS service\n team might create a default setting of \"false\". This means the user can't use this feature unless\n they change the setting to \"true\" and intentionally opt in for a paid feature.</p>\n <p>Services map a <code>SettingId</code> object to a setting value. AWS services teams define\n the default value for a <code>SettingId</code>. You can't create a new <code>SettingId</code>,\n but you can overwrite the default value if you have the <code>ssm:UpdateServiceSetting</code>\n permission for the setting. Use the <a>UpdateServiceSetting</a> API action to change\n the default setting. Or use the <a>ResetServiceSetting</a> to change the value back to\n the original value defined by the AWS service team.</p>\n <p>Query the current service setting for the account. </p>"
}
},
"com.amazonaws.ssm#GetServiceSettingRequest": {
"type": "structure",
"members": {
"SettingId": {
"target": "com.amazonaws.ssm#ServiceSettingId",
"traits": {
"smithy.api#documentation": "<p>The ID of the service setting to get. The setting ID can be\n <code>/ssm/automation/customer-script-log-destination</code>,\n <code>/ssm/automation/customer-script-log-group-name</code>,\n <code>/ssm/parameter-store/default-parameter-tier</code>,\n <code>/ssm/parameter-store/high-throughput-enabled</code>, or\n <code>/ssm/managed-instance/activation-tier</code>.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>The request body of the GetServiceSetting API action.</p>"
}
},
"com.amazonaws.ssm#GetServiceSettingResult": {
"type": "structure",
"members": {
"ServiceSetting": {
"target": "com.amazonaws.ssm#ServiceSetting",
"traits": {
"smithy.api#documentation": "<p>The query result of the current service setting.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The query result body of the GetServiceSetting API action.</p>"
}
},
"com.amazonaws.ssm#HierarchyLevelLimitExceededException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>A hierarchy can have a maximum of 15 levels. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html\">Requirements and\n constraints for parameter names</a> in the <i>AWS Systems Manager User Guide</i>. </p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A hierarchy can have a maximum of 15 levels. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html\">Requirements and\n constraints for parameter names</a> in the <i>AWS Systems Manager User Guide</i>. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#HierarchyTypeMismatchException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>Parameter Store does not support changing a parameter type in a hierarchy. For example, you\n can't change a parameter from a <code>String</code> type to a <code>SecureString</code> type. You\n must create a new, unique parameter.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Parameter Store does not support changing a parameter type in a hierarchy. For example, you\n can't change a parameter from a <code>String</code> type to a <code>SecureString</code> type. You\n must create a new, unique parameter.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#IPAddress": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 46
}
}
},
"com.amazonaws.ssm#ISO8601String": {
"type": "string"
},
"com.amazonaws.ssm#IamRole": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 64
}
}
},
"com.amazonaws.ssm#IdempotencyToken": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 36,
"max": 36
},
"smithy.api#pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}"
}
},
"com.amazonaws.ssm#IdempotentParameterMismatch": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Error returned when an idempotent operation is retried and the parameters don't match the\n original call to the API with the same idempotency token. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#IncompatiblePolicyException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>There is a conflict in the policies specified for this parameter. You can't, for example,\n specify two Expiration policies for a parameter. Review your policies, and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InstallOverrideList": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
},
"smithy.api#pattern": "^https://.+$|^s3://([^/]+)/(.*?([^/]+))$"
}
},
"com.amazonaws.ssm#InstanceAggregatedAssociationOverview": {
"type": "structure",
"members": {
"DetailedStatus": {
"target": "com.amazonaws.ssm#StatusName",
"traits": {
"smithy.api#documentation": "<p>Detailed status information about the aggregated associations.</p>"
}
},
"InstanceAssociationStatusAggregatedCount": {
"target": "com.amazonaws.ssm#InstanceAssociationStatusAggregatedCount",
"traits": {
"smithy.api#documentation": "<p>The number of associations for the instance(s).</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Status information about the aggregated associations.</p>"
}
},
"com.amazonaws.ssm#InstanceAssociation": {
"type": "structure",
"members": {
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The instance ID.</p>"
}
},
"Content": {
"target": "com.amazonaws.ssm#DocumentContent",
"traits": {
"smithy.api#documentation": "<p>The content of the association document for the instance(s).</p>"
}
},
"AssociationVersion": {
"target": "com.amazonaws.ssm#AssociationVersion",
"traits": {
"smithy.api#documentation": "<p>Version information for the association on the instance.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>One or more association documents on the instance. </p>"
}
},
"com.amazonaws.ssm#InstanceAssociationExecutionSummary": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 512
}
}
},
"com.amazonaws.ssm#InstanceAssociationList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstanceAssociation"
}
},
"com.amazonaws.ssm#InstanceAssociationOutputLocation": {
"type": "structure",
"members": {
"S3Location": {
"target": "com.amazonaws.ssm#S3OutputLocation",
"traits": {
"smithy.api#documentation": "<p>An S3 bucket where you want to store the results of this request.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An S3 bucket where you want to store the results of this request.</p>\n <p>For the minimal permissions required to enable Amazon S3 output for an association, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-state-assoc.html\">Creating\n associations</a> in the <i>Systems Manager User Guide</i>. </p>"
}
},
"com.amazonaws.ssm#InstanceAssociationOutputUrl": {
"type": "structure",
"members": {
"S3OutputUrl": {
"target": "com.amazonaws.ssm#S3OutputUrl",
"traits": {
"smithy.api#documentation": "<p>The URL of S3 bucket where you want to store the results of this request.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The URL of S3 bucket where you want to store the results of this request.</p>"
}
},
"com.amazonaws.ssm#InstanceAssociationStatusAggregatedCount": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#StatusName"
},
"value": {
"target": "com.amazonaws.ssm#InstanceCount"
}
},
"com.amazonaws.ssm#InstanceAssociationStatusInfo": {
"type": "structure",
"members": {
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the association.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The association document versions.</p>"
}
},
"AssociationVersion": {
"target": "com.amazonaws.ssm#AssociationVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the association applied to the instance.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The instance ID where the association was created.</p>"
}
},
"ExecutionDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the instance association ran. </p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#StatusName",
"traits": {
"smithy.api#documentation": "<p>Status information about the instance association.</p>"
}
},
"DetailedStatus": {
"target": "com.amazonaws.ssm#StatusName",
"traits": {
"smithy.api#documentation": "<p>Detailed status information about the instance association.</p>"
}
},
"ExecutionSummary": {
"target": "com.amazonaws.ssm#InstanceAssociationExecutionSummary",
"traits": {
"smithy.api#documentation": "<p>Summary information about association execution.</p>"
}
},
"ErrorCode": {
"target": "com.amazonaws.ssm#AgentErrorCode",
"traits": {
"smithy.api#documentation": "<p>An error code returned by the request to create the association.</p>"
}
},
"OutputUrl": {
"target": "com.amazonaws.ssm#InstanceAssociationOutputUrl",
"traits": {
"smithy.api#documentation": "<p>A URL for an S3 bucket where you want to store the results of this request.</p>"
}
},
"AssociationName": {
"target": "com.amazonaws.ssm#AssociationName",
"traits": {
"smithy.api#documentation": "<p>The name of the association applied to the instance.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Status information about the instance association.</p>"
}
},
"com.amazonaws.ssm#InstanceAssociationStatusInfos": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstanceAssociationStatusInfo"
}
},
"com.amazonaws.ssm#InstanceCount": {
"type": "integer"
},
"com.amazonaws.ssm#InstanceId": {
"type": "string",
"traits": {
"smithy.api#pattern": "(^i-(\\w{8}|\\w{17})$)|(^mi-\\w{17}$)"
}
},
"com.amazonaws.ssm#InstanceIdList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstanceId"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 50
}
}
},
"com.amazonaws.ssm#InstanceInformation": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The instance ID. </p>"
}
},
"PingStatus": {
"target": "com.amazonaws.ssm#PingStatus",
"traits": {
"smithy.api#documentation": "<p>Connection status of SSM Agent. </p>\n <note>\n <p>The status <code>Inactive</code> has been deprecated and is no longer in use.</p>\n </note>"
}
},
"LastPingDateTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time when the agent last pinged the Systems Manager service. </p>"
}
},
"AgentVersion": {
"target": "com.amazonaws.ssm#Version",
"traits": {
"smithy.api#documentation": "<p>The version of SSM Agent running on your Linux instance. </p>"
}
},
"IsLatestVersion": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Indicates whether the latest version of SSM Agent is running on your Linux Managed Instance.\n This field does not indicate whether or not the latest version is installed on Windows managed\n instances, because some older versions of Windows Server use the EC2Config service to process SSM\n requests.</p>"
}
},
"PlatformType": {
"target": "com.amazonaws.ssm#PlatformType",
"traits": {
"smithy.api#documentation": "<p>The operating system platform type. </p>"
}
},
"PlatformName": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The name of the operating system platform running on your instance. </p>"
}
},
"PlatformVersion": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The version of the OS platform running on your instance. </p>"
}
},
"ActivationId": {
"target": "com.amazonaws.ssm#ActivationId",
"traits": {
"smithy.api#documentation": "<p>The activation ID created by Systems Manager when the server or VM was registered.</p>"
}
},
"IamRole": {
"target": "com.amazonaws.ssm#IamRole",
"traits": {
"smithy.api#documentation": "<p>The Amazon Identity and Access Management (IAM) role assigned to the on-premises Systems Manager\n managed instance. This call does not return the IAM role for EC2 instances. To retrieve the IAM\n role for an EC2 instance, use the Amazon EC2 <code>DescribeInstances</code> action. For information,\n see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html\">DescribeInstances</a> in the\n <i>Amazon EC2 API Reference</i> or <a href=\"http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-instances.html\">describe-instances</a> in the <i>AWS CLI Command Reference</i>.</p>"
}
},
"RegistrationDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the server or VM was registered with AWS as a managed instance.</p>"
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#ResourceType",
"traits": {
"smithy.api#documentation": "<p>The type of instance. Instances are either EC2 instances or managed instances. </p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The name assigned to an on-premises server or virtual machine (VM) when it is activated as a\n Systems Manager managed instance. The name is specified as the <code>DefaultInstanceName</code> property\n using the <a>CreateActivation</a> command. It is applied to the managed instance by\n specifying the Activation Code and Activation ID when you install SSM Agent on the instance, as\n explained in <a href=\"http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-linux.html\">Install SSM Agent for a\n hybrid environment (Linux)</a> and <a href=\"http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-win.html\">Install SSM Agent for a hybrid environment\n (Windows)</a>. To retrieve the Name tag of an EC2 instance, use the Amazon EC2\n <code>DescribeInstances</code> action. For information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html\">DescribeInstances</a> in the\n <i>Amazon EC2 API Reference</i> or <a href=\"http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-instances.html\">describe-instances</a> in the <i>AWS CLI Command Reference</i>.</p>"
}
},
"IPAddress": {
"target": "com.amazonaws.ssm#IPAddress",
"traits": {
"smithy.api#documentation": "<p>The IP address of the managed instance.</p>"
}
},
"ComputerName": {
"target": "com.amazonaws.ssm#ComputerName",
"traits": {
"smithy.api#documentation": "<p>The fully qualified host name of the managed instance.</p>"
}
},
"AssociationStatus": {
"target": "com.amazonaws.ssm#StatusName",
"traits": {
"smithy.api#documentation": "<p>The status of the association.</p>"
}
},
"LastAssociationExecutionDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the association was last run.</p>"
}
},
"LastSuccessfulAssociationExecutionDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The last date the association was successfully run.</p>"
}
},
"AssociationOverview": {
"target": "com.amazonaws.ssm#InstanceAggregatedAssociationOverview",
"traits": {
"smithy.api#documentation": "<p>Information about the association.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes a filter for a specific list of instances. </p>"
}
},
"com.amazonaws.ssm#InstanceInformationFilter": {
"type": "structure",
"members": {
"key": {
"target": "com.amazonaws.ssm#InstanceInformationFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter. </p>",
"smithy.api#required": {}
}
},
"valueSet": {
"target": "com.amazonaws.ssm#InstanceInformationFilterValueSet",
"traits": {
"smithy.api#documentation": "<p>The filter values.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes a filter for a specific list of instances. You can filter instances information by\n using tags. You specify tags by using a key-value mapping.</p>\n <p>Use this action instead of the <a>DescribeInstanceInformationRequest$InstanceInformationFilterList</a> method. The\n <code>InstanceInformationFilterList</code> method is a legacy method and does not support tags.\n </p>"
}
},
"com.amazonaws.ssm#InstanceInformationFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "InstanceIds",
"name": "INSTANCE_IDS"
},
{
"value": "AgentVersion",
"name": "AGENT_VERSION"
},
{
"value": "PingStatus",
"name": "PING_STATUS"
},
{
"value": "PlatformTypes",
"name": "PLATFORM_TYPES"
},
{
"value": "ActivationIds",
"name": "ACTIVATION_IDS"
},
{
"value": "IamRole",
"name": "IAM_ROLE"
},
{
"value": "ResourceType",
"name": "RESOURCE_TYPE"
},
{
"value": "AssociationStatus",
"name": "ASSOCIATION_STATUS"
}
]
}
},
"com.amazonaws.ssm#InstanceInformationFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstanceInformationFilter",
"traits": {
"smithy.api#xmlName": "InstanceInformationFilter"
}
},
"traits": {
"smithy.api#length": {
"min": 0
}
}
},
"com.amazonaws.ssm#InstanceInformationFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#InstanceInformationFilterValueSet": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstanceInformationFilterValue",
"traits": {
"smithy.api#xmlName": "InstanceInformationFilterValue"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 100
}
}
},
"com.amazonaws.ssm#InstanceInformationList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstanceInformation",
"traits": {
"smithy.api#xmlName": "InstanceInformation"
}
}
},
"com.amazonaws.ssm#InstanceInformationStringFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#InstanceInformationStringFilterKey",
"traits": {
"smithy.api#documentation": "<p>The filter key name to describe your instances. For example:</p>\n <p>\"InstanceIds\"|\"AgentVersion\"|\"PingStatus\"|\"PlatformTypes\"|\"ActivationIds\"|\"IamRole\"|\"ResourceType\"|\"AssociationStatus\"|\"Tag\n Key\"</p>\n <important>\n <p>\n <code>Tag key</code> is not a valid filter. You must specify either <code>tag-key</code> or\n <code>tag:keyname</code> and a string. Here are some valid examples: tag-key, tag:123, tag:al!,\n tag:Windows. Here are some <i>invalid</i> examples: tag-keys, Tag Key, tag:,\n tagKey, abc:keyname.</p>\n </important>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#InstanceInformationFilterValueSet",
"traits": {
"smithy.api#documentation": "<p>The filter values.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>The filters to describe or get information about your managed instances.</p>"
}
},
"com.amazonaws.ssm#InstanceInformationStringFilterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#InstanceInformationStringFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstanceInformationStringFilter",
"traits": {
"smithy.api#xmlName": "InstanceInformationStringFilter"
}
},
"traits": {
"smithy.api#length": {
"min": 0
}
}
},
"com.amazonaws.ssm#InstancePatchState": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the managed instance the high-level patch compliance information was collected\n for.</p>",
"smithy.api#required": {}
}
},
"PatchGroup": {
"target": "com.amazonaws.ssm#PatchGroup",
"traits": {
"smithy.api#documentation": "<p>The name of the patch group the managed instance belongs to.</p>",
"smithy.api#required": {}
}
},
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline used to patch the instance.</p>",
"smithy.api#required": {}
}
},
"SnapshotId": {
"target": "com.amazonaws.ssm#SnapshotId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline snapshot used during the patching operation when this\n compliance data was collected.</p>"
}
},
"InstallOverrideList": {
"target": "com.amazonaws.ssm#InstallOverrideList",
"traits": {
"smithy.api#documentation": "<p>An https URL or an Amazon S3 path-style URL to a list of patches to be installed. This patch\n installation list, which you maintain in an S3 bucket in YAML format and specify in the SSM\n document <code>AWS-RunPatchBaseline</code>, overrides the patches specified by the default patch\n baseline.</p>\n <p>For more information about the <code>InstallOverrideList</code> parameter, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-about-aws-runpatchbaseline.html\">About the\n SSM document AWS-RunPatchBaseline</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"OwnerInformation": {
"target": "com.amazonaws.ssm#OwnerInformation",
"traits": {
"smithy.api#documentation": "<p>Placeholder information. This field will always be empty in the current release of the\n service.</p>"
}
},
"InstalledCount": {
"target": "com.amazonaws.ssm#PatchInstalledCount",
"traits": {
"smithy.api#documentation": "<p>The number of patches from the patch baseline that are installed on the instance.</p>"
}
},
"InstalledOtherCount": {
"target": "com.amazonaws.ssm#PatchInstalledOtherCount",
"traits": {
"smithy.api#documentation": "<p>The number of patches not specified in the patch baseline that are installed on the\n instance.</p>"
}
},
"InstalledPendingRebootCount": {
"target": "com.amazonaws.ssm#PatchInstalledPendingRebootCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of patches installed by Patch Manager since the last time the instance was\n rebooted.</p>"
}
},
"InstalledRejectedCount": {
"target": "com.amazonaws.ssm#PatchInstalledRejectedCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of patches installed on an instance that are specified in a\n <code>RejectedPatches</code> list. Patches with a status of\n <i>InstalledRejected</i> were typically installed before they were added to a\n <code>RejectedPatches</code> list.</p>\n <note>\n <p>If <code>ALLOW_AS_DEPENDENCY</code> is the specified option for\n <code>RejectedPatchesAction</code>, the value of <code>InstalledRejectedCount</code> will\n always be <code>0</code> (zero).</p>\n </note>"
}
},
"MissingCount": {
"target": "com.amazonaws.ssm#PatchMissingCount",
"traits": {
"smithy.api#documentation": "<p>The number of patches from the patch baseline that are applicable for the instance but\n aren't currently installed.</p>"
}
},
"FailedCount": {
"target": "com.amazonaws.ssm#PatchFailedCount",
"traits": {
"smithy.api#documentation": "<p>The number of patches from the patch baseline that were attempted to be installed during the\n last patching operation, but failed to install.</p>"
}
},
"UnreportedNotApplicableCount": {
"target": "com.amazonaws.ssm#PatchUnreportedNotApplicableCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of patches beyond the supported limit of <code>NotApplicableCount</code> that are\n not reported by name to Systems Manager Inventory.</p>"
}
},
"NotApplicableCount": {
"target": "com.amazonaws.ssm#PatchNotApplicableCount",
"traits": {
"smithy.api#documentation": "<p>The number of patches from the patch baseline that aren't applicable for the instance and\n therefore aren't installed on the instance. This number may be truncated if the list of patch\n names is very large. The number of patches beyond this limit are reported in\n <code>UnreportedNotApplicableCount</code>.</p>"
}
},
"OperationStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the most recent patching operation was started on the instance.</p>",
"smithy.api#required": {}
}
},
"OperationEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the most recent patching operation completed on the instance.</p>",
"smithy.api#required": {}
}
},
"Operation": {
"target": "com.amazonaws.ssm#PatchOperationType",
"traits": {
"smithy.api#documentation": "<p>The type of patching operation that was performed: <code>SCAN</code> (assess patch\n compliance state) or <code>INSTALL</code> (install missing patches).</p>",
"smithy.api#required": {}
}
},
"LastNoRebootInstallOperationTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time of the last attempt to patch the instance with <code>NoReboot</code> specified as\n the reboot option.</p>"
}
},
"RebootOption": {
"target": "com.amazonaws.ssm#RebootOption",
"traits": {
"smithy.api#documentation": "<p>Indicates the reboot option specified in the patch baseline.</p>\n <note>\n <p>Reboot options apply to <code>Install</code> operations only. Reboots are not attempted for\n Patch Manager <code>Scan</code> operations.</p>\n </note>\n <ul>\n <li>\n <p>\n <b>RebootIfNeeded</b>: Patch Manager tries to reboot the\n instance if it installed any patches, or if any patches are detected with a status of\n <code>InstalledPendingReboot</code>.</p>\n </li>\n <li>\n <p>\n <b>NoReboot</b>: Patch Manager attempts to install missing\n packages without trying to reboot the system. Patches installed with this option are assigned a\n status of <code>InstalledPendingReboot</code>. These patches might not be in effect until a\n reboot is performed.</p>\n </li>\n </ul>"
}
},
"CriticalNonCompliantCount": {
"target": "com.amazonaws.ssm#PatchCriticalNonCompliantCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of instances where patches that are specified as \"Critical\" for compliance\n reporting in the patch baseline are not installed. These patches might be missing, have failed\n installation, were rejected, or were installed but awaiting a required instance reboot. The\n status of these instances is <code>NON_COMPLIANT</code>.</p>"
}
},
"SecurityNonCompliantCount": {
"target": "com.amazonaws.ssm#PatchSecurityNonCompliantCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of instances where patches that are specified as \"Security\" in a patch advisory\n are not installed. These patches might be missing, have failed installation, were rejected, or\n were installed but awaiting a required instance reboot. The status of these instances is\n <code>NON_COMPLIANT</code>.</p>"
}
},
"OtherNonCompliantCount": {
"target": "com.amazonaws.ssm#PatchOtherNonCompliantCount",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of instances with patches installed that are specified as other than \"Critical\"\n or \"Security\" but are not compliant with the patch baseline. The status of these instances is\n NON_COMPLIANT.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Defines the high-level patch compliance state for a managed instance, providing information\n about the number of installed, missing, not applicable, and failed patches along with metadata\n about the operation when this information was gathered for the instance.</p>"
}
},
"com.amazonaws.ssm#InstancePatchStateFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#InstancePatchStateFilterKey",
"traits": {
"smithy.api#documentation": "<p>The key for the filter. Supported values are FailedCount, InstalledCount,\n InstalledOtherCount, MissingCount and NotApplicableCount.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#InstancePatchStateFilterValues",
"traits": {
"smithy.api#documentation": "<p>The value for the filter, must be an integer greater than or equal to 0.</p>",
"smithy.api#required": {}
}
},
"Type": {
"target": "com.amazonaws.ssm#InstancePatchStateOperatorType",
"traits": {
"smithy.api#documentation": "<p>The type of comparison that should be performed for the value: Equal, NotEqual, LessThan or\n GreaterThan.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Defines a filter used in <a>DescribeInstancePatchStatesForPatchGroup</a> used to\n scope down the information returned by the API.</p>"
}
},
"com.amazonaws.ssm#InstancePatchStateFilterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 200
}
}
},
"com.amazonaws.ssm#InstancePatchStateFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstancePatchStateFilter"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 4
}
}
},
"com.amazonaws.ssm#InstancePatchStateFilterValue": {
"type": "string"
},
"com.amazonaws.ssm#InstancePatchStateFilterValues": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstancePatchStateFilterValue"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1
}
}
},
"com.amazonaws.ssm#InstancePatchStateList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstancePatchState"
}
},
"com.amazonaws.ssm#InstancePatchStateOperatorType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Equal",
"name": "EQUAL"
},
{
"value": "NotEqual",
"name": "NOT_EQUAL"
},
{
"value": "LessThan",
"name": "LESS_THAN"
},
{
"value": "GreaterThan",
"name": "GREATER_THAN"
}
]
}
},
"com.amazonaws.ssm#InstancePatchStatesList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InstancePatchState"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 5
}
}
},
"com.amazonaws.ssm#InstanceTagName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 255
}
}
},
"com.amazonaws.ssm#InstancesCount": {
"type": "integer"
},
"com.amazonaws.ssm#Integer": {
"type": "integer"
},
"com.amazonaws.ssm#InternalServerError": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>An error occurred on the server side.</p>",
"smithy.api#error": "server"
}
},
"com.amazonaws.ssm#InvalidActivation": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The activation is not valid. The activation might have been deleted, or the ActivationId and\n the ActivationCode do not match.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidActivationId": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The activation ID is not valid. Verify the you entered the correct ActivationId or\n ActivationCode and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidAggregatorException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified aggregator is not valid for inventory groups. Verify that the aggregator uses\n a valid inventory type such as <code>AWS:Application</code> or\n <code>AWS:InstanceInformation</code>.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidAllowedPatternException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The request does not meet the regular expression requirement.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The request does not meet the regular expression requirement.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidAssociation": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The association is not valid or does not exist. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidAssociationVersion": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The version you specified is not valid. Use ListAssociationVersions to view all versions of\n an association according to the association ID. Or, use the <code>$LATEST</code> parameter to\n view the latest version of the association.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidAutomationExecutionParametersException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The supplied parameters for invoking the specified Automation document are incorrect. For\n example, they may not match the set of parameters permitted for the specified Automation\n document.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidAutomationSignalException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The signal is not valid for the current Automation execution.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidAutomationStatusUpdateException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified update status operation is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidCommandId": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidDeleteInventoryParametersException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>One or more of the parameters specified for the delete operation is not valid. Verify all\n parameters and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidDeletionIdException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The ID specified for the delete operation does not exist or is not valid. Verify the ID and\n try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidDocument": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The document does not exist or the document is not available to the user. This exception can\n be issued by CreateAssociation, CreateAssociationBatch, DeleteAssociation, DeleteDocument,\n DescribeAssociation, DescribeDocument, GetDocument, SendCommand, or UpdateAssociationStatus.\n </p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The specified document does not exist.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidDocumentContent": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>A description of the validation error.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The content for the document is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidDocumentOperation": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You attempted to delete a document while it is still shared. You must stop sharing the\n document before you can delete it.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidDocumentSchemaVersion": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The version of the document schema is not supported.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidDocumentType": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The document type is not valid. Valid document types are described in the\n <code>DocumentType</code> property.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidDocumentVersion": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The document version is not valid or does not exist.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidFilter": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The filter name is not valid. Verify the you entered the correct name and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidFilterKey": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The specified key is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidFilterOption": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The specified filter option is not valid. Valid options are Equals and BeginsWith. For Path\n filter, valid options are Recursive and OneLevel.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The specified filter option is not valid. Valid options are Equals and BeginsWith. For Path\n filter, valid options are Recursive and OneLevel.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidFilterValue": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The filter value is not valid. Verify the value and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidInstanceId": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The following problems can cause this exception:</p>\n <p>You do not have permission to access the instance.</p>\n <p>SSM Agent is not running. Verify that SSM Agent is running.</p>\n <p>SSM Agent is not registered with the SSM endpoint. Try reinstalling SSM Agent.</p>\n <p>The instance is not in valid state. Valid states are: Running, Pending, Stopped, Stopping.\n Invalid states are: Shutting-down and Terminated.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidInstanceInformationFilterValue": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified filter value is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidInventoryGroupException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified inventory group is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidInventoryItemContextException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You specified invalid keys or values in the <code>Context</code> attribute for\n <code>InventoryItem</code>. Verify the keys and values, and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidInventoryRequestException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The request is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidItemContentException": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName"
},
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>One or more content items is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidKeyId": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The query key ID is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidNextToken": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified token is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidNotificationConfig": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>One or more configuration items is not valid. Verify that a valid Amazon Resource Name (ARN)\n was provided for an Amazon SNS topic.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidOptionException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The delete inventory option specified is not valid. Verify the option and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidOutputFolder": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The S3 bucket does not exist.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidOutputLocation": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The output location is not valid or does not exist.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidParameters": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You must specify values for all required parameters in the Systems Manager document. You can only\n supply values to parameters defined in the Systems Manager document.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidPermissionType": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The permission type is not supported. <i>Share</i> is the only supported\n permission type.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidPluginName": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The plugin name is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidPolicyAttributeException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>A policy attribute or its value is invalid. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidPolicyTypeException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The policy type is not supported. Parameter Store supports the following policy types:\n Expiration, ExpirationNotification, and NoChangeNotification.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidResourceId": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The resource ID is not valid. Verify that you entered the correct ID and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidResourceType": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The resource type is not valid. For example, if you are attempting to tag an instance, the\n instance must be a registered, managed instance.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidResultAttributeException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified inventory item result attribute is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidRole": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The role name can't contain invalid characters. Also verify that you specified an IAM role\n for notifications that includes the required trust policy. For information about configuring the\n IAM role for Run Command notifications, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/rc-sns-notifications.html\">Configuring Amazon SNS\n Notifications for Run Command</a> in the <i>AWS Systems Manager User Guide</i>.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidSchedule": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The schedule is invalid. Verify your cron or rate expression and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidTarget": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The target is not valid or does not exist. It might not be configured for Systems Manager or you might\n not have permission to perform the operation.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidTypeNameException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The parameter type name is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvalidUpdate": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The update is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InventoryAggregator": {
"type": "structure",
"members": {
"Expression": {
"target": "com.amazonaws.ssm#InventoryAggregatorExpression",
"traits": {
"smithy.api#documentation": "<p>The inventory type and attribute name for aggregation.</p>"
}
},
"Aggregators": {
"target": "com.amazonaws.ssm#InventoryAggregatorList",
"traits": {
"smithy.api#documentation": "<p>Nested aggregators to further refine aggregation for an inventory type.</p>"
}
},
"Groups": {
"target": "com.amazonaws.ssm#InventoryGroupList",
"traits": {
"smithy.api#documentation": "<p>A user-defined set of one or more filters on which to aggregate inventory data. Groups\n return a count of resources that match and don't match the specified criteria.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Specifies the inventory type and attribute for the aggregation execution.</p>"
}
},
"com.amazonaws.ssm#InventoryAggregatorExpression": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1000
}
}
},
"com.amazonaws.ssm#InventoryAggregatorList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryAggregator",
"traits": {
"smithy.api#xmlName": "Aggregator"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#InventoryAttributeDataType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "string",
"name": "STRING"
},
{
"value": "number",
"name": "NUMBER"
}
]
}
},
"com.amazonaws.ssm#InventoryDeletionLastStatusMessage": {
"type": "string"
},
"com.amazonaws.ssm#InventoryDeletionLastStatusUpdateTime": {
"type": "timestamp"
},
"com.amazonaws.ssm#InventoryDeletionStartTime": {
"type": "timestamp"
},
"com.amazonaws.ssm#InventoryDeletionStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "InProgress",
"name": "IN_PROGRESS"
},
{
"value": "Complete",
"name": "COMPLETE"
}
]
}
},
"com.amazonaws.ssm#InventoryDeletionStatusItem": {
"type": "structure",
"members": {
"DeletionId": {
"target": "com.amazonaws.ssm#UUID",
"traits": {
"smithy.api#documentation": "<p>The deletion ID returned by the <code>DeleteInventory</code> action.</p>"
}
},
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName",
"traits": {
"smithy.api#documentation": "<p>The name of the inventory data type.</p>"
}
},
"DeletionStartTime": {
"target": "com.amazonaws.ssm#InventoryDeletionStartTime",
"traits": {
"smithy.api#documentation": "<p>The UTC timestamp when the delete operation started.</p>"
}
},
"LastStatus": {
"target": "com.amazonaws.ssm#InventoryDeletionStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the operation. Possible values are InProgress and Complete.</p>"
}
},
"LastStatusMessage": {
"target": "com.amazonaws.ssm#InventoryDeletionLastStatusMessage",
"traits": {
"smithy.api#documentation": "<p>Information about the status.</p>"
}
},
"DeletionSummary": {
"target": "com.amazonaws.ssm#InventoryDeletionSummary",
"traits": {
"smithy.api#documentation": "<p>Information about the delete operation. For more information about this summary, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-custom.html#sysman-inventory-delete\">Understanding the delete inventory summary</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"LastStatusUpdateTime": {
"target": "com.amazonaws.ssm#InventoryDeletionLastStatusUpdateTime",
"traits": {
"smithy.api#documentation": "<p>The UTC timestamp of when the last status report.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Status information returned by the <code>DeleteInventory</code> action.</p>"
}
},
"com.amazonaws.ssm#InventoryDeletionSummary": {
"type": "structure",
"members": {
"TotalCount": {
"target": "com.amazonaws.ssm#TotalCount",
"traits": {
"smithy.api#documentation": "<p>The total number of items to delete. This count does not change during the delete\n operation.</p>"
}
},
"RemainingCount": {
"target": "com.amazonaws.ssm#RemainingCount",
"traits": {
"smithy.api#documentation": "<p>Remaining number of items to delete.</p>"
}
},
"SummaryItems": {
"target": "com.amazonaws.ssm#InventoryDeletionSummaryItems",
"traits": {
"smithy.api#documentation": "<p>A list of counts and versions for deleted items.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the delete operation.</p>"
}
},
"com.amazonaws.ssm#InventoryDeletionSummaryItem": {
"type": "structure",
"members": {
"Version": {
"target": "com.amazonaws.ssm#InventoryItemSchemaVersion",
"traits": {
"smithy.api#documentation": "<p>The inventory type version.</p>"
}
},
"Count": {
"target": "com.amazonaws.ssm#ResourceCount",
"traits": {
"smithy.api#documentation": "<p>A count of the number of deleted items.</p>"
}
},
"RemainingCount": {
"target": "com.amazonaws.ssm#RemainingCount",
"traits": {
"smithy.api#documentation": "<p>The remaining number of items to delete.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Either a count, remaining count, or a version number in a delete inventory summary.</p>"
}
},
"com.amazonaws.ssm#InventoryDeletionSummaryItems": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryDeletionSummaryItem"
}
},
"com.amazonaws.ssm#InventoryDeletionsList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryDeletionStatusItem"
}
},
"com.amazonaws.ssm#InventoryFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#InventoryFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter key.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#InventoryFilterValueList",
"traits": {
"smithy.api#documentation": "<p>Inventory filter values. Example: inventory filter where instance IDs are specified as\n values Key=AWS:InstanceInformation.InstanceId,Values= i-a12b3c4d5e6g, i-1a2b3c4d5e6,Type=Equal\n </p>",
"smithy.api#required": {}
}
},
"Type": {
"target": "com.amazonaws.ssm#InventoryQueryOperatorType",
"traits": {
"smithy.api#documentation": "<p>The type of filter.</p>\n <note>\n <p>The <code>Exists</code> filter must be used with aggregators. For more information, see\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-aggregate.html\">Aggregating inventory\n data</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n </note>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>One or more filters. Use a filter to return a more specific list of results.</p>"
}
},
"com.amazonaws.ssm#InventoryFilterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 200
}
}
},
"com.amazonaws.ssm#InventoryFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryFilter",
"traits": {
"smithy.api#xmlName": "InventoryFilter"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 5
}
}
},
"com.amazonaws.ssm#InventoryFilterValue": {
"type": "string"
},
"com.amazonaws.ssm#InventoryFilterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryFilterValue",
"traits": {
"smithy.api#xmlName": "FilterValue"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 40
}
}
},
"com.amazonaws.ssm#InventoryGroup": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#InventoryGroupName",
"traits": {
"smithy.api#documentation": "<p>The name of the group.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#InventoryFilterList",
"traits": {
"smithy.api#documentation": "<p>Filters define the criteria for the group. The <code>matchingCount</code> field displays the\n number of resources that match the criteria. The <code>notMatchingCount</code> field displays the\n number of resources that don't match the criteria. </p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>A user-defined set of one or more filters on which to aggregate inventory data. Groups\n return a count of resources that match and don't match the specified criteria.</p>"
}
},
"com.amazonaws.ssm#InventoryGroupList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryGroup",
"traits": {
"smithy.api#xmlName": "InventoryGroup"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 15
}
}
},
"com.amazonaws.ssm#InventoryGroupName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 200
}
}
},
"com.amazonaws.ssm#InventoryItem": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName",
"traits": {
"smithy.api#documentation": "<p>The name of the inventory type. Default inventory item type names start with AWS. Custom\n inventory type names will start with Custom. Default inventory item types include the following:\n AWS:AWSComponent, AWS:Application, AWS:InstanceInformation, AWS:Network, and\n AWS:WindowsUpdate.</p>",
"smithy.api#required": {}
}
},
"SchemaVersion": {
"target": "com.amazonaws.ssm#InventoryItemSchemaVersion",
"traits": {
"smithy.api#documentation": "<p>The schema version for the inventory item.</p>",
"smithy.api#required": {}
}
},
"CaptureTime": {
"target": "com.amazonaws.ssm#InventoryItemCaptureTime",
"traits": {
"smithy.api#documentation": "<p>The time the inventory information was collected.</p>",
"smithy.api#required": {}
}
},
"ContentHash": {
"target": "com.amazonaws.ssm#InventoryItemContentHash",
"traits": {
"smithy.api#documentation": "<p>MD5 hash of the inventory item type contents. The content hash is used to determine whether\n to update inventory information. The PutInventory API does not update the inventory item type\n contents if the MD5 hash has not changed since last update. </p>"
}
},
"Content": {
"target": "com.amazonaws.ssm#InventoryItemEntryList",
"traits": {
"smithy.api#documentation": "<p>The inventory data of the inventory type.</p>"
}
},
"Context": {
"target": "com.amazonaws.ssm#InventoryItemContentContext",
"traits": {
"smithy.api#documentation": "<p>A map of associated properties for a specified inventory type. For example, with this\n attribute, you can specify the <code>ExecutionId</code>, <code>ExecutionType</code>,\n <code>ComplianceType</code> properties of the <code>AWS:ComplianceItem</code> type.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information collected from managed instances based on your inventory policy document</p>"
}
},
"com.amazonaws.ssm#InventoryItemAttribute": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#InventoryItemAttributeName",
"traits": {
"smithy.api#documentation": "<p>Name of the inventory item attribute.</p>",
"smithy.api#required": {}
}
},
"DataType": {
"target": "com.amazonaws.ssm#InventoryAttributeDataType",
"traits": {
"smithy.api#documentation": "<p>The data type of the inventory item attribute. </p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Attributes are the entries within the inventory item content. It contains name and\n value.</p>"
}
},
"com.amazonaws.ssm#InventoryItemAttributeList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryItemAttribute",
"traits": {
"smithy.api#xmlName": "Attribute"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#InventoryItemAttributeName": {
"type": "string"
},
"com.amazonaws.ssm#InventoryItemCaptureTime": {
"type": "string",
"traits": {
"smithy.api#pattern": "^(20)[0-9][0-9]-(0[1-9]|1[012])-([12][0-9]|3[01]|0[1-9])(T)(2[0-3]|[0-1][0-9])(:[0-5][0-9])(:[0-5][0-9])(Z)$"
}
},
"com.amazonaws.ssm#InventoryItemContentContext": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#AttributeName"
},
"value": {
"target": "com.amazonaws.ssm#AttributeValue"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 50
}
}
},
"com.amazonaws.ssm#InventoryItemContentHash": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 256
}
}
},
"com.amazonaws.ssm#InventoryItemEntry": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#AttributeName"
},
"value": {
"target": "com.amazonaws.ssm#AttributeValue"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 50
}
}
},
"com.amazonaws.ssm#InventoryItemEntryList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryItemEntry"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 10000
}
}
},
"com.amazonaws.ssm#InventoryItemList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryItem",
"traits": {
"smithy.api#xmlName": "Item"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 30
}
}
},
"com.amazonaws.ssm#InventoryItemSchema": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName",
"traits": {
"smithy.api#documentation": "<p>The name of the inventory type. Default inventory item type names start with AWS. Custom\n inventory type names will start with Custom. Default inventory item types include the following:\n AWS:AWSComponent, AWS:Application, AWS:InstanceInformation, AWS:Network, and\n AWS:WindowsUpdate.</p>",
"smithy.api#required": {}
}
},
"Version": {
"target": "com.amazonaws.ssm#InventoryItemSchemaVersion",
"traits": {
"smithy.api#documentation": "<p>The schema version for the inventory item.</p>"
}
},
"Attributes": {
"target": "com.amazonaws.ssm#InventoryItemAttributeList",
"traits": {
"smithy.api#documentation": "<p>The schema attributes for inventory. This contains data type and attribute name.</p>",
"smithy.api#required": {}
}
},
"DisplayName": {
"target": "com.amazonaws.ssm#InventoryTypeDisplayName",
"traits": {
"smithy.api#documentation": "<p>The alias name of the inventory type. The alias name is used for display purposes.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The inventory item schema definition. Users can use this to compose inventory query\n filters.</p>"
}
},
"com.amazonaws.ssm#InventoryItemSchemaResultList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryItemSchema"
}
},
"com.amazonaws.ssm#InventoryItemSchemaVersion": {
"type": "string",
"traits": {
"smithy.api#pattern": "^([0-9]{1,6})(\\.[0-9]{1,6})$"
}
},
"com.amazonaws.ssm#InventoryItemTypeName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 100
},
"smithy.api#pattern": "^(AWS|Custom):.*$"
}
},
"com.amazonaws.ssm#InventoryItemTypeNameFilter": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 100
}
}
},
"com.amazonaws.ssm#InventoryQueryOperatorType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Equal",
"name": "EQUAL"
},
{
"value": "NotEqual",
"name": "NOT_EQUAL"
},
{
"value": "BeginWith",
"name": "BEGIN_WITH"
},
{
"value": "LessThan",
"name": "LESS_THAN"
},
{
"value": "GreaterThan",
"name": "GREATER_THAN"
},
{
"value": "Exists",
"name": "EXISTS"
}
]
}
},
"com.amazonaws.ssm#InventoryResultEntity": {
"type": "structure",
"members": {
"Id": {
"target": "com.amazonaws.ssm#InventoryResultEntityId",
"traits": {
"smithy.api#documentation": "<p>ID of the inventory result entity. For example, for managed instance inventory the result\n will be the managed instance ID. For EC2 instance inventory, the result will be the instance ID.\n </p>"
}
},
"Data": {
"target": "com.amazonaws.ssm#InventoryResultItemMap",
"traits": {
"smithy.api#documentation": "<p>The data section in the inventory result entity JSON.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Inventory query results.</p>"
}
},
"com.amazonaws.ssm#InventoryResultEntityId": {
"type": "string"
},
"com.amazonaws.ssm#InventoryResultEntityList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#InventoryResultEntity",
"traits": {
"smithy.api#xmlName": "Entity"
}
}
},
"com.amazonaws.ssm#InventoryResultItem": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName",
"traits": {
"smithy.api#documentation": "<p>The name of the inventory result item type.</p>",
"smithy.api#required": {}
}
},
"SchemaVersion": {
"target": "com.amazonaws.ssm#InventoryItemSchemaVersion",
"traits": {
"smithy.api#documentation": "<p>The schema version for the inventory result item/</p>",
"smithy.api#required": {}
}
},
"CaptureTime": {
"target": "com.amazonaws.ssm#InventoryItemCaptureTime",
"traits": {
"smithy.api#documentation": "<p>The time inventory item data was captured.</p>"
}
},
"ContentHash": {
"target": "com.amazonaws.ssm#InventoryItemContentHash",
"traits": {
"smithy.api#documentation": "<p>MD5 hash of the inventory item type contents. The content hash is used to determine whether\n to update inventory information. The PutInventory API does not update the inventory item type\n contents if the MD5 hash has not changed since last update. </p>"
}
},
"Content": {
"target": "com.amazonaws.ssm#InventoryItemEntryList",
"traits": {
"smithy.api#documentation": "<p>Contains all the inventory data of the item type. Results include attribute names and\n values. </p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>The inventory result item.</p>"
}
},
"com.amazonaws.ssm#InventoryResultItemKey": {
"type": "string"
},
"com.amazonaws.ssm#InventoryResultItemMap": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#InventoryResultItemKey"
},
"value": {
"target": "com.amazonaws.ssm#InventoryResultItem"
}
},
"com.amazonaws.ssm#InventorySchemaDeleteOption": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "DisableSchema",
"name": "DISABLE_SCHEMA"
},
{
"value": "DeleteSchema",
"name": "DELETE_SCHEMA"
}
]
}
},
"com.amazonaws.ssm#InventoryTypeDisplayName": {
"type": "string"
},
"com.amazonaws.ssm#InvocationDoesNotExist": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The command ID and instance ID you specified did not match any invocations. Verify the\n command ID and the instance ID and try again. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#InvocationTraceOutput": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 2500
}
}
},
"com.amazonaws.ssm#IsSubTypeSchema": {
"type": "boolean"
},
"com.amazonaws.ssm#ItemContentMismatchException": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName"
},
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The inventory item has invalid content. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ItemSizeLimitExceededException": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName"
},
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The inventory item size has exceeded the size limit.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#KeyList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#TagKey"
}
},
"com.amazonaws.ssm#LabelParameterVersion": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#LabelParameterVersionRequest"
},
"output": {
"target": "com.amazonaws.ssm#LabelParameterVersionResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ParameterNotFound"
},
{
"target": "com.amazonaws.ssm#ParameterVersionLabelLimitExceeded"
},
{
"target": "com.amazonaws.ssm#ParameterVersionNotFound"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
}
],
"traits": {
"smithy.api#documentation": "<p>A parameter label is a user-defined alias to help you manage different versions of a\n parameter. When you modify a parameter, Systems Manager automatically saves a new version and increments\n the version number by one. A label can help you remember the purpose of a parameter when there\n are multiple versions. </p>\n <p>Parameter labels have the following requirements and restrictions.</p>\n <ul>\n <li>\n <p>A version of a parameter can have a maximum of 10 labels.</p>\n </li>\n <li>\n <p>You can't attach the same label to different versions of the same parameter. For example,\n if version 1 has the label Production, then you can't attach Production to version 2.</p>\n </li>\n <li>\n <p>You can move a label from one version of a parameter to another.</p>\n </li>\n <li>\n <p>You can't create a label when you create a new parameter. You must attach a label to a\n specific version of a parameter.</p>\n </li>\n <li>\n <p>If you no longer want to use a parameter label, then you can either delete it or move it\n to a different version of a parameter.</p>\n </li>\n <li>\n <p>A label can have a maximum of 100 characters.</p>\n </li>\n <li>\n <p>Labels can contain letters (case sensitive), numbers, periods (.), hyphens (-), or\n underscores (_).</p>\n </li>\n <li>\n <p>Labels can't begin with a number, \"aws,\" or \"ssm\" (not case sensitive). If a label fails\n to meet these requirements, then the label is not associated with a parameter and the system\n displays it in the list of InvalidLabels.</p>\n </li>\n </ul>"
}
},
"com.amazonaws.ssm#LabelParameterVersionRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#PSParameterName",
"traits": {
"smithy.api#documentation": "<p>The parameter name on which you want to attach one or more labels.</p>",
"smithy.api#required": {}
}
},
"ParameterVersion": {
"target": "com.amazonaws.ssm#PSParameterVersion",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The specific version of the parameter on which you want to attach one or more labels. If no\n version is specified, the system attaches the label to the latest version.</p>"
}
},
"Labels": {
"target": "com.amazonaws.ssm#ParameterLabelList",
"traits": {
"smithy.api#documentation": "<p>One or more labels to attach to the specified parameter version.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#LabelParameterVersionResult": {
"type": "structure",
"members": {
"InvalidLabels": {
"target": "com.amazonaws.ssm#ParameterLabelList",
"traits": {
"smithy.api#documentation": "<p>The label does not meet the requirements. For information about parameter label\n requirements, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html\">Labeling parameters</a>\n in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"ParameterVersion": {
"target": "com.amazonaws.ssm#PSParameterVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the parameter that has been labeled.</p>"
}
}
}
},
"com.amazonaws.ssm#LastResourceDataSyncMessage": {
"type": "string"
},
"com.amazonaws.ssm#LastResourceDataSyncStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Successful",
"name": "SUCCESSFUL"
},
{
"value": "Failed",
"name": "FAILED"
},
{
"value": "InProgress",
"name": "INPROGRESS"
}
]
}
},
"com.amazonaws.ssm#LastResourceDataSyncTime": {
"type": "timestamp"
},
"com.amazonaws.ssm#LastSuccessfulResourceDataSyncTime": {
"type": "timestamp"
},
"com.amazonaws.ssm#ListAssociationVersions": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListAssociationVersionsRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListAssociationVersionsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociationDoesNotExist"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Retrieves all versions of an association for a specific association ID.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "AssociationVersions",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListAssociationVersionsRequest": {
"type": "structure",
"members": {
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID for which you want to view all versions.</p>",
"smithy.api#required": {}
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
}
}
},
"com.amazonaws.ssm#ListAssociationVersionsResult": {
"type": "structure",
"members": {
"AssociationVersions": {
"target": "com.amazonaws.ssm#AssociationVersionList",
"traits": {
"smithy.api#documentation": "<p>Information about all versions of the association for the specified association ID.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListAssociations": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListAssociationsRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListAssociationsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Returns all State Manager associations in the current AWS account and Region. You can limit\n the results to a specific State Manager association document or instance by specifying a\n filter.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Associations",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListAssociationsRequest": {
"type": "structure",
"members": {
"AssociationFilterList": {
"target": "com.amazonaws.ssm#AssociationFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more filters. Use a filter to return a more specific list of results.</p>\n <note>\n <p>Filtering associations using the <code>InstanceID</code> attribute only returns legacy\n associations created using the <code>InstanceID</code> attribute. Associations targeting the\n instance that are part of the Target Attributes <code>ResourceGroup</code> or <code>Tags</code>\n are not returned.</p>\n </note>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#ListAssociationsResult": {
"type": "structure",
"members": {
"Associations": {
"target": "com.amazonaws.ssm#AssociationList",
"traits": {
"smithy.api#documentation": "<p>The associations.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#ListCommandInvocations": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListCommandInvocationsRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListCommandInvocationsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidCommandId"
},
{
"target": "com.amazonaws.ssm#InvalidFilterKey"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>An invocation is copy of a command sent to a specific instance. A command can apply to one\n or more instances. A command invocation applies to one instance. For example, if a user runs\n SendCommand against three instances, then a command invocation is created for each requested\n instance ID. ListCommandInvocations provide status about command execution.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "CommandInvocations",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListCommandInvocationsRequest": {
"type": "structure",
"members": {
"CommandId": {
"target": "com.amazonaws.ssm#CommandId",
"traits": {
"smithy.api#documentation": "<p>(Optional) The invocations for a specific command ID.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>(Optional) The command execution details for a specific instance ID.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#CommandMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>(Optional) The maximum number of items to return for this call. The call also returns a\n token that you can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>(Optional) The token for the next set of items to return. (You received this token from a\n previous call.)</p>"
}
},
"Filters": {
"target": "com.amazonaws.ssm#CommandFilterList",
"traits": {
"smithy.api#documentation": "<p>(Optional) One or more filters. Use a filter to return a more specific list of\n results.</p>"
}
},
"Details": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#documentation": "<p>(Optional) If set this returns the response of the command executions and any command\n output. The default value is 'false'. </p>"
}
}
}
},
"com.amazonaws.ssm#ListCommandInvocationsResult": {
"type": "structure",
"members": {
"CommandInvocations": {
"target": "com.amazonaws.ssm#CommandInvocationList",
"traits": {
"smithy.api#documentation": "<p>(Optional) A list of all invocations. </p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>(Optional) The token for the next set of items to return. (You received this token from a\n previous call.)</p>"
}
}
}
},
"com.amazonaws.ssm#ListCommands": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListCommandsRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListCommandsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidCommandId"
},
{
"target": "com.amazonaws.ssm#InvalidFilterKey"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists the commands requested by users of the AWS account.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Commands",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListCommandsRequest": {
"type": "structure",
"members": {
"CommandId": {
"target": "com.amazonaws.ssm#CommandId",
"traits": {
"smithy.api#documentation": "<p>(Optional) If provided, lists only the specified command.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>(Optional) Lists commands issued against this instance ID.</p>\n <note>\n <p>You can't specify an instance ID in the same command that you specify <code>Status</code> =\n <code>Pending</code>. This is because the command has not reached the instance yet.</p>\n </note>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#CommandMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>(Optional) The maximum number of items to return for this call. The call also returns a\n token that you can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>(Optional) The token for the next set of items to return. (You received this token from a\n previous call.)</p>"
}
},
"Filters": {
"target": "com.amazonaws.ssm#CommandFilterList",
"traits": {
"smithy.api#documentation": "<p>(Optional) One or more filters. Use a filter to return a more specific list of results.\n </p>"
}
}
}
},
"com.amazonaws.ssm#ListCommandsResult": {
"type": "structure",
"members": {
"Commands": {
"target": "com.amazonaws.ssm#CommandList",
"traits": {
"smithy.api#documentation": "<p>(Optional) The list of commands requested by the user. </p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>(Optional) The token for the next set of items to return. (You received this token from a\n previous call.)</p>"
}
}
}
},
"com.amazonaws.ssm#ListComplianceItems": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListComplianceItemsRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListComplianceItemsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilter"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
},
{
"target": "com.amazonaws.ssm#InvalidResourceId"
},
{
"target": "com.amazonaws.ssm#InvalidResourceType"
}
],
"traits": {
"smithy.api#documentation": "<p>For a specified resource ID, this API action returns a list of compliance statuses for\n different resource types. Currently, you can only specify one resource ID per call. List results\n depend on the criteria specified in the filter.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "ComplianceItems",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListComplianceItemsRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#ComplianceStringFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more compliance filters. Use a filter to return a more specific list of\n results.</p>"
}
},
"ResourceIds": {
"target": "com.amazonaws.ssm#ComplianceResourceIdList",
"traits": {
"smithy.api#documentation": "<p>The ID for the resources from which to get compliance information. Currently, you can only\n specify one resource ID.</p>"
}
},
"ResourceTypes": {
"target": "com.amazonaws.ssm#ComplianceResourceTypeList",
"traits": {
"smithy.api#documentation": "<p>The type of resource from which to get compliance information. Currently, the only supported\n resource type is <code>ManagedInstance</code>.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListComplianceItemsResult": {
"type": "structure",
"members": {
"ComplianceItems": {
"target": "com.amazonaws.ssm#ComplianceItemList",
"traits": {
"smithy.api#documentation": "<p>A list of compliance information for the specified resource ID. </p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListComplianceSummaries": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListComplianceSummariesRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListComplianceSummariesResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilter"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Returns a summary count of compliant and non-compliant resources for a compliance type. For\n example, this call can return State Manager associations, patches, or custom compliance types\n according to the filter criteria that you specify.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "ComplianceSummaryItems",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListComplianceSummariesRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#ComplianceStringFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more compliance or inventory filters. Use a filter to return a more specific list of\n results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. Currently, you can specify null or 50.\n The call also returns a token that you can specify in a subsequent call to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListComplianceSummariesResult": {
"type": "structure",
"members": {
"ComplianceSummaryItems": {
"target": "com.amazonaws.ssm#ComplianceSummaryItemList",
"traits": {
"smithy.api#documentation": "<p>A list of compliant and non-compliant summary counts based on compliance types. For example,\n this call returns State Manager associations, patches, or custom compliance types according to\n the filter criteria that you specified.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListDocumentMetadataHistory": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListDocumentMetadataHistoryRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListDocumentMetadataHistoryResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentVersion"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Information about approval reviews for a version of an SSM document.</p>"
}
},
"com.amazonaws.ssm#ListDocumentMetadataHistoryRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the document.</p>",
"smithy.api#required": {}
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the document.</p>"
}
},
"Metadata": {
"target": "com.amazonaws.ssm#DocumentMetadataEnum",
"traits": {
"smithy.api#documentation": "<p>The type of data for which details are being requested. Currently, the only supported value\n is <code>DocumentReviews</code>.</p>",
"smithy.api#required": {}
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListDocumentMetadataHistoryResponse": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the document.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the document.</p>"
}
},
"Author": {
"target": "com.amazonaws.ssm#DocumentAuthor",
"traits": {
"smithy.api#documentation": "<p>The user ID of the person in the organization who requested the document review.</p>"
}
},
"Metadata": {
"target": "com.amazonaws.ssm#DocumentMetadataResponseInfo",
"traits": {
"smithy.api#documentation": "<p>Information about the response to the document approval request.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListDocumentVersions": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListDocumentVersionsRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListDocumentVersionsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>List all versions for a document.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "DocumentVersions",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListDocumentVersionsRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the document. You can specify an Amazon Resource Name (ARN).</p>",
"smithy.api#required": {}
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#ListDocumentVersionsResult": {
"type": "structure",
"members": {
"DocumentVersions": {
"target": "com.amazonaws.ssm#DocumentVersionList",
"traits": {
"smithy.api#documentation": "<p>The document versions.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#ListDocuments": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListDocumentsRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListDocumentsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilterKey"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Returns all Systems Manager (SSM) documents in the current AWS account and Region. You can limit the\n results of this request by using a filter.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "DocumentIdentifiers",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListDocumentsRequest": {
"type": "structure",
"members": {
"DocumentFilterList": {
"target": "com.amazonaws.ssm#DocumentFilterList",
"traits": {
"smithy.api#documentation": "<p>This data type is deprecated. Instead, use <code>Filters</code>.</p>"
}
},
"Filters": {
"target": "com.amazonaws.ssm#DocumentKeyValuesFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more <code>DocumentKeyValuesFilter</code> objects. Use a filter to return a more\n specific list of results. For keys, you can specify one or more key-value pair tags that have\n been applied to a document. Other valid keys include <code>Owner</code>, <code>Name</code>,\n <code>PlatformTypes</code>, <code>DocumentType</code>, and <code>TargetType</code>. For example,\n to return documents you own use <code>Key=Owner,Values=Self</code>. To specify a custom key-value\n pair, use the format <code>Key=tag:tagName,Values=valueName</code>.</p>\n <note>\n <p>This API action only supports filtering documents by using a single tag key and one or more\n tag values. For example: <code>Key=tag:tagName,Values=valueName1,valueName2</code>\n </p>\n </note>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#ListDocumentsResult": {
"type": "structure",
"members": {
"DocumentIdentifiers": {
"target": "com.amazonaws.ssm#DocumentIdentifierList",
"traits": {
"smithy.api#documentation": "<p>The names of the Systems Manager documents.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#ListInventoryEntries": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListInventoryEntriesRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListInventoryEntriesResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilter"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
},
{
"target": "com.amazonaws.ssm#InvalidTypeNameException"
}
],
"traits": {
"smithy.api#documentation": "<p>A list of inventory items returned by the request.</p>"
}
},
"com.amazonaws.ssm#ListInventoryEntriesRequest": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The instance ID for which you want inventory information.</p>",
"smithy.api#required": {}
}
},
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName",
"traits": {
"smithy.api#documentation": "<p>The type of inventory item for which you want information.</p>",
"smithy.api#required": {}
}
},
"Filters": {
"target": "com.amazonaws.ssm#InventoryFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more filters. Use a filter to return a more specific list of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListInventoryEntriesResult": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName",
"traits": {
"smithy.api#documentation": "<p>The type of inventory item returned by the request.</p>"
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The instance ID targeted by the request to query inventory information.</p>"
}
},
"SchemaVersion": {
"target": "com.amazonaws.ssm#InventoryItemSchemaVersion",
"traits": {
"smithy.api#documentation": "<p>The inventory schema version used by the instance(s).</p>"
}
},
"CaptureTime": {
"target": "com.amazonaws.ssm#InventoryItemCaptureTime",
"traits": {
"smithy.api#documentation": "<p>The time that inventory information was collected for the instance(s).</p>"
}
},
"Entries": {
"target": "com.amazonaws.ssm#InventoryItemEntryList",
"traits": {
"smithy.api#documentation": "<p>A list of inventory items on the instance(s).</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token to use when requesting the next set of items. If there are no additional items to\n return, the string is empty.</p>"
}
}
}
},
"com.amazonaws.ssm#ListOpsItemEvents": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListOpsItemEventsRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListOpsItemEventsResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsItemInvalidParameterException"
},
{
"target": "com.amazonaws.ssm#OpsItemLimitExceededException"
},
{
"target": "com.amazonaws.ssm#OpsItemNotFoundException"
}
],
"traits": {
"smithy.api#documentation": "<p>Returns a list of all OpsItem events in the current AWS account and Region. You can limit\n the results to events associated with specific OpsItems by specifying a filter.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Summaries",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListOpsItemEventsRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#OpsItemEventFilters",
"traits": {
"smithy.api#documentation": "<p>One or more OpsItem filters. Use a filter to return a more specific list of results. </p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#OpsItemEventMaxResults",
"traits": {
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results. </p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
}
}
},
"com.amazonaws.ssm#ListOpsItemEventsResponse": {
"type": "structure",
"members": {
"NextToken": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results. </p>"
}
},
"Summaries": {
"target": "com.amazonaws.ssm#OpsItemEventSummaries",
"traits": {
"smithy.api#documentation": "<p>A list of event information for the specified OpsItems.</p>"
}
}
}
},
"com.amazonaws.ssm#ListOpsItemRelatedItems": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListOpsItemRelatedItemsRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListOpsItemRelatedItemsResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsItemInvalidParameterException"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists all related-item resources associated with an OpsItem.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "Summaries",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListOpsItemRelatedItemsRequest": {
"type": "structure",
"members": {
"OpsItemId": {
"target": "com.amazonaws.ssm#OpsItemId",
"traits": {
"smithy.api#documentation": "<p>The ID of the OpsItem for which you want to list all related-item resources.</p>"
}
},
"Filters": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemsFilters",
"traits": {
"smithy.api#documentation": "<p>One or more OpsItem filters. Use a filter to return a more specific list of results. </p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemsMaxResults",
"traits": {
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. (You received this token from a previous\n call.)</p>"
}
}
}
},
"com.amazonaws.ssm#ListOpsItemRelatedItemsResponse": {
"type": "structure",
"members": {
"NextToken": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
},
"Summaries": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemSummaries",
"traits": {
"smithy.api#documentation": "<p>A list of related-item resources for the specified OpsItem.</p>"
}
}
}
},
"com.amazonaws.ssm#ListOpsMetadata": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListOpsMetadataRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListOpsMetadataResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsMetadataInvalidArgumentException"
}
],
"traits": {
"smithy.api#documentation": "<p>Systems Manager calls this API action when displaying all Application Manager OpsMetadata objects or\n blobs.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "OpsMetadataList",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListOpsMetadataMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#ListOpsMetadataRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#OpsMetadataFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more filters to limit the number of OpsMetadata objects returned by the call.</p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#ListOpsMetadataMaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListOpsMetadataResult": {
"type": "structure",
"members": {
"OpsMetadataList": {
"target": "com.amazonaws.ssm#OpsMetadataList",
"traits": {
"smithy.api#documentation": "<p>Returns a list of OpsMetadata objects.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListResourceComplianceSummaries": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListResourceComplianceSummariesRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListResourceComplianceSummariesResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidFilter"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
}
],
"traits": {
"smithy.api#documentation": "<p>Returns a resource-level summary count. The summary includes information about compliant and\n non-compliant statuses and detailed compliance-item severity counts, according to the filter\n criteria you specify.</p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "ResourceComplianceSummaryItems",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListResourceComplianceSummariesRequest": {
"type": "structure",
"members": {
"Filters": {
"target": "com.amazonaws.ssm#ComplianceStringFilterList",
"traits": {
"smithy.api#documentation": "<p>One or more filters. Use a filter to return a more specific list of results.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListResourceComplianceSummariesResult": {
"type": "structure",
"members": {
"ResourceComplianceSummaryItems": {
"target": "com.amazonaws.ssm#ResourceComplianceSummaryItemList",
"traits": {
"smithy.api#documentation": "<p>A summary count for specified or targeted managed instances. Summary count includes\n information about compliant and non-compliant State Manager associations, patch status, or custom\n items according to the filter criteria that you specify. </p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListResourceDataSync": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListResourceDataSyncRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListResourceDataSyncResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidNextToken"
},
{
"target": "com.amazonaws.ssm#ResourceDataSyncInvalidConfigurationException"
}
],
"traits": {
"smithy.api#documentation": "<p>Lists your resource data sync configurations. Includes information about the last time a\n sync attempted to start, the last sync status, and the last time a sync successfully\n completed.</p>\n <p>The number of sync configurations might be too large to return using a single call to\n <code>ListResourceDataSync</code>. You can limit the number of sync configurations returned by\n using the <code>MaxResults</code> parameter. To determine whether there are more sync\n configurations to list, check the value of <code>NextToken</code> in the output. If there are\n more sync configurations to list, you can request them by specifying the <code>NextToken</code>\n returned in the call to the parameter of a subsequent call. </p>",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
"items": "ResourceDataSyncItems",
"pageSize": "MaxResults"
}
}
},
"com.amazonaws.ssm#ListResourceDataSyncRequest": {
"type": "structure",
"members": {
"SyncType": {
"target": "com.amazonaws.ssm#ResourceDataSyncType",
"traits": {
"smithy.api#documentation": "<p>View a list of resource data syncs according to the sync type. Specify\n <code>SyncToDestination</code> to view resource data syncs that synchronize data to an Amazon S3\n bucket. Specify <code>SyncFromSource</code> to view resource data syncs from AWS Organizations or from\n multiple AWS Regions.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>A token to start the list. Use this token to get the next set of results. </p>"
}
},
"MaxResults": {
"target": "com.amazonaws.ssm#MaxResults",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of items to return for this call. The call also returns a token that you\n can specify in a subsequent call to get the next set of results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListResourceDataSyncResult": {
"type": "structure",
"members": {
"ResourceDataSyncItems": {
"target": "com.amazonaws.ssm#ResourceDataSyncItemList",
"traits": {
"smithy.api#documentation": "<p>A list of your current Resource Data Sync configurations and their statuses.</p>"
}
},
"NextToken": {
"target": "com.amazonaws.ssm#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token for the next set of items to return. Use this token to get the next set of\n results.</p>"
}
}
}
},
"com.amazonaws.ssm#ListTagsForResource": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ListTagsForResourceRequest"
},
"output": {
"target": "com.amazonaws.ssm#ListTagsForResourceResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidResourceId"
},
{
"target": "com.amazonaws.ssm#InvalidResourceType"
}
],
"traits": {
"smithy.api#documentation": "<p>Returns a list of the tags assigned to the specified resource.</p>"
}
},
"com.amazonaws.ssm#ListTagsForResourceRequest": {
"type": "structure",
"members": {
"ResourceType": {
"target": "com.amazonaws.ssm#ResourceTypeForTagging",
"traits": {
"smithy.api#documentation": "<p>Returns a list of tags for a specific resource type.</p>",
"smithy.api#required": {}
}
},
"ResourceId": {
"target": "com.amazonaws.ssm#ResourceId",
"traits": {
"smithy.api#documentation": "<p>The resource ID for which you want to see a list of tags.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#ListTagsForResourceResult": {
"type": "structure",
"members": {
"TagList": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>A list of tags.</p>"
}
}
}
},
"com.amazonaws.ssm#LoggingInfo": {
"type": "structure",
"members": {
"S3BucketName": {
"target": "com.amazonaws.ssm#S3BucketName",
"traits": {
"smithy.api#documentation": "<p>The name of an S3 bucket where execution logs are stored .</p>",
"smithy.api#required": {}
}
},
"S3KeyPrefix": {
"target": "com.amazonaws.ssm#S3KeyPrefix",
"traits": {
"smithy.api#documentation": "<p>(Optional) The S3 bucket subfolder. </p>"
}
},
"S3Region": {
"target": "com.amazonaws.ssm#S3Region",
"traits": {
"smithy.api#documentation": "<p>The Region where the S3 bucket is located.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about an S3 bucket to write instance-level logs to.</p>\n <note>\n <p>\n <code>LoggingInfo</code> has been deprecated. To specify an S3 bucket to contain logs, instead use the\n <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.\n For information about how Systems Manager handles these options for the supported maintenance\n window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>"
}
},
"com.amazonaws.ssm#Long": {
"type": "long"
},
"com.amazonaws.ssm#MaintenanceWindowAllowUnassociatedTargets": {
"type": "boolean"
},
"com.amazonaws.ssm#MaintenanceWindowAutomationParameters": {
"type": "structure",
"members": {
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of an Automation document to use during task execution.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>The parameters for the AUTOMATION task.</p>\n <p>For information about specifying and updating task parameters, see <a>RegisterTaskWithMaintenanceWindow</a> and <a>UpdateMaintenanceWindowTask</a>.</p>\n <note>\n \n <p>\n <code>LoggingInfo</code> has been deprecated. To specify an S3 bucket to contain logs, instead use the\n <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.\n For information about how Systems Manager handles these options for the supported maintenance\n window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n \n <p>\n <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,\n instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information\n about how Systems Manager handles these options for the supported maintenance window task\n types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n <p>For AUTOMATION task types, Systems Manager ignores any values specified for these parameters.</p>\n </note>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The parameters for an AUTOMATION task type.</p>"
}
},
"com.amazonaws.ssm#MaintenanceWindowCutoff": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 0,
"max": 23
}
}
},
"com.amazonaws.ssm#MaintenanceWindowDescription": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
},
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#MaintenanceWindowDurationHours": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 24
}
}
},
"com.amazonaws.ssm#MaintenanceWindowEnabled": {
"type": "boolean"
},
"com.amazonaws.ssm#MaintenanceWindowExecution": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window.</p>"
}
},
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the execution.</p>"
}
},
"StatusDetails": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatusDetails",
"traits": {
"smithy.api#documentation": "<p>The details explaining the Status. Only available for certain status values.</p>"
}
},
"StartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the execution started.</p>"
}
},
"EndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the execution finished.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes the information about an execution of a maintenance window. </p>"
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 36,
"max": 36
},
"smithy.api#pattern": "^[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}$"
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecution"
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "PENDING",
"name": "Pending"
},
{
"value": "IN_PROGRESS",
"name": "InProgress"
},
{
"value": "SUCCESS",
"name": "Success"
},
{
"value": "FAILED",
"name": "Failed"
},
{
"value": "TIMED_OUT",
"name": "TimedOut"
},
{
"value": "CANCELLING",
"name": "Cancelling"
},
{
"value": "CANCELLED",
"name": "Cancelled"
},
{
"value": "SKIPPED_OVERLAPPING",
"name": "SkippedOverlapping"
}
]
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionStatusDetails": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 250
}
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionTaskExecutionId": {
"type": "string"
},
"com.amazonaws.ssm#MaintenanceWindowExecutionTaskId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 36,
"max": 36
},
"smithy.api#pattern": "^[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}$"
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionTaskIdList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskId"
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionTaskIdentity": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution that ran the task.</p>"
}
},
"TaskExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskId",
"traits": {
"smithy.api#documentation": "<p>The ID of the specific task execution in the maintenance window execution.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the task execution.</p>"
}
},
"StatusDetails": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatusDetails",
"traits": {
"smithy.api#documentation": "<p>The details explaining the status of the task execution. Only available for certain status\n values.</p>"
}
},
"StartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the task execution started.</p>"
}
},
"EndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the task execution finished.</p>"
}
},
"TaskArn": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskArn",
"traits": {
"smithy.api#documentation": "<p>The ARN of the task that ran.</p>"
}
},
"TaskType": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskType",
"traits": {
"smithy.api#documentation": "<p>The type of task that ran.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about a task execution performed as part of a maintenance window\n execution.</p>"
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionTaskIdentityList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskIdentity"
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 36,
"max": 36
},
"smithy.api#pattern": "^[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}$"
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationIdentity": {
"type": "structure",
"members": {
"WindowExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window execution that ran the task.</p>"
}
},
"TaskExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskId",
"traits": {
"smithy.api#documentation": "<p>The ID of the specific task execution in the maintenance window execution.</p>"
}
},
"InvocationId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationId",
"traits": {
"smithy.api#documentation": "<p>The ID of the task invocation.</p>"
}
},
"ExecutionId": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskExecutionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the action performed in the service that actually handled the task invocation. If\n the task type is RUN_COMMAND, this value is the command ID.</p>"
}
},
"TaskType": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskType",
"traits": {
"smithy.api#documentation": "<p>The task type.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters that were provided for the invocation when it was run.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the task invocation.</p>"
}
},
"StatusDetails": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionStatusDetails",
"traits": {
"smithy.api#documentation": "<p>The details explaining the status of the task invocation. Only available for certain Status\n values. </p>"
}
},
"StartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the invocation started.</p>"
}
},
"EndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the invocation finished.</p>"
}
},
"OwnerInformation": {
"target": "com.amazonaws.ssm#OwnerInformation",
"traits": {
"smithy.api#documentation": "<p>User-provided value that was specified when the target was registered with the maintenance\n window. This was also included in any CloudWatch events raised during the task invocation.</p>"
}
},
"WindowTargetId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskTargetId",
"traits": {
"smithy.api#documentation": "<p>The ID of the target definition in this maintenance window the invocation was performed\n for.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes the information about a task invocation for a particular target as part of a task\n execution performed as part of a maintenance window execution.</p>"
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationIdentityList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationIdentity"
}
},
"com.amazonaws.ssm#MaintenanceWindowExecutionTaskInvocationParameters": {
"type": "string",
"traits": {
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#MaintenanceWindowFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#MaintenanceWindowFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>"
}
},
"Values": {
"target": "com.amazonaws.ssm#MaintenanceWindowFilterValues",
"traits": {
"smithy.api#documentation": "<p>The filter values.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Filter used in the request. Supported filter keys are Name and Enabled.</p>"
}
},
"com.amazonaws.ssm#MaintenanceWindowFilterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
}
}
},
"com.amazonaws.ssm#MaintenanceWindowFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowFilter"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 5
}
}
},
"com.amazonaws.ssm#MaintenanceWindowFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
}
}
},
"com.amazonaws.ssm#MaintenanceWindowFilterValues": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowFilterValue"
}
},
"com.amazonaws.ssm#MaintenanceWindowId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 20,
"max": 20
},
"smithy.api#pattern": "^mw-[0-9a-f]{17}$"
}
},
"com.amazonaws.ssm#MaintenanceWindowIdentity": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The name of the maintenance window.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>A description of the maintenance window.</p>"
}
},
"Enabled": {
"target": "com.amazonaws.ssm#MaintenanceWindowEnabled",
"traits": {
"smithy.api#documentation": "<p>Indicates whether the maintenance window is enabled.</p>"
}
},
"Duration": {
"target": "com.amazonaws.ssm#MaintenanceWindowDurationHours",
"traits": {
"smithy.api#documentation": "<p>The duration of the maintenance window in hours.</p>"
}
},
"Cutoff": {
"target": "com.amazonaws.ssm#MaintenanceWindowCutoff",
"traits": {
"smithy.api#documentation": "<p>The number of hours before the end of the maintenance window that Systems Manager stops scheduling new\n tasks for execution.</p>"
}
},
"Schedule": {
"target": "com.amazonaws.ssm#MaintenanceWindowSchedule",
"traits": {
"smithy.api#documentation": "<p>The schedule of the maintenance window in the form of a cron or rate expression.</p>"
}
},
"ScheduleTimezone": {
"target": "com.amazonaws.ssm#MaintenanceWindowTimezone",
"traits": {
"smithy.api#documentation": "<p>The time zone that the scheduled maintenance window executions are based on, in Internet\n Assigned Numbers Authority (IANA) format.</p>"
}
},
"ScheduleOffset": {
"target": "com.amazonaws.ssm#MaintenanceWindowOffset",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of days to wait to run a maintenance window after the scheduled CRON expression\n date and time.</p>"
}
},
"EndDate": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled\n to become inactive.</p>"
}
},
"StartDate": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled\n to become active.</p>"
}
},
"NextExecutionTime": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The next time the maintenance window will actually run, taking into account any specified\n times for the maintenance window to become active or inactive.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the maintenance window.</p>"
}
},
"com.amazonaws.ssm#MaintenanceWindowIdentityForTarget": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The name of the maintenance window.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The maintenance window to which the specified target belongs.</p>"
}
},
"com.amazonaws.ssm#MaintenanceWindowIdentityList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowIdentity"
}
},
"com.amazonaws.ssm#MaintenanceWindowLambdaClientContext": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 8000
}
}
},
"com.amazonaws.ssm#MaintenanceWindowLambdaParameters": {
"type": "structure",
"members": {
"ClientContext": {
"target": "com.amazonaws.ssm#MaintenanceWindowLambdaClientContext",
"traits": {
"smithy.api#documentation": "<p>Pass client-specific information to the Lambda function that you are invoking. You can then\n process the client information in your Lambda function as you choose through the context\n variable.</p>"
}
},
"Qualifier": {
"target": "com.amazonaws.ssm#MaintenanceWindowLambdaQualifier",
"traits": {
"smithy.api#documentation": "<p>(Optional) Specify a Lambda function version or alias name. If you specify a function\n version, the action uses the qualified function ARN to invoke a specific Lambda function. If you\n specify an alias name, the action uses the alias ARN to invoke the Lambda function version to\n which the alias points.</p>"
}
},
"Payload": {
"target": "com.amazonaws.ssm#MaintenanceWindowLambdaPayload",
"traits": {
"smithy.api#documentation": "<p>JSON to provide to your Lambda function as input.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The parameters for a LAMBDA task type.</p>\n <p>For information about specifying and updating task parameters, see <a>RegisterTaskWithMaintenanceWindow</a> and <a>UpdateMaintenanceWindowTask</a>.</p>\n <note>\n \n <p>\n <code>LoggingInfo</code> has been deprecated. To specify an S3 bucket to contain logs, instead use the\n <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.\n For information about how Systems Manager handles these options for the supported maintenance\n window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n \n <p>\n <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,\n instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information\n about how Systems Manager handles these options for the supported maintenance window task\n types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n <p>For Lambda tasks, Systems Manager ignores any values specified for TaskParameters and\n LoggingInfo.</p>\n </note>"
}
},
"com.amazonaws.ssm#MaintenanceWindowLambdaPayload": {
"type": "blob",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 4096
},
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#MaintenanceWindowLambdaQualifier": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
}
}
},
"com.amazonaws.ssm#MaintenanceWindowMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 10,
"max": 100
}
}
},
"com.amazonaws.ssm#MaintenanceWindowName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 3,
"max": 128
},
"smithy.api#pattern": "^[a-zA-Z0-9_\\-.]{3,128}$"
}
},
"com.amazonaws.ssm#MaintenanceWindowOffset": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 6
}
}
},
"com.amazonaws.ssm#MaintenanceWindowResourceType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "INSTANCE",
"name": "Instance"
},
{
"value": "RESOURCE_GROUP",
"name": "ResourceGroup"
}
]
}
},
"com.amazonaws.ssm#MaintenanceWindowRunCommandParameters": {
"type": "structure",
"members": {
"Comment": {
"target": "com.amazonaws.ssm#Comment",
"traits": {
"smithy.api#documentation": "<p>Information about the commands to run.</p>"
}
},
"CloudWatchOutputConfig": {
"target": "com.amazonaws.ssm#CloudWatchOutputConfig"
},
"DocumentHash": {
"target": "com.amazonaws.ssm#DocumentHash",
"traits": {
"smithy.api#documentation": "<p>The SHA-256 or SHA-1 hash created by the system when the document was created. SHA-1 hashes\n have been deprecated.</p>"
}
},
"DocumentHashType": {
"target": "com.amazonaws.ssm#DocumentHashType",
"traits": {
"smithy.api#documentation": "<p>SHA-256 or SHA-1. SHA-1 hashes have been deprecated.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The SSM document version to use in the request. You can specify $DEFAULT, $LATEST, or a\n specific version number. If you run commands by using the AWS CLI, then you must escape the first\n two options by using a backslash. If you specify a version number, then you don't need to use the\n backslash. For example:</p>\n <p>--document-version \"\\$DEFAULT\"</p>\n <p>--document-version \"\\$LATEST\"</p>\n <p>--document-version \"3\"</p>"
}
},
"NotificationConfig": {
"target": "com.amazonaws.ssm#NotificationConfig",
"traits": {
"smithy.api#documentation": "<p>Configurations for sending notifications about command status changes on a per-instance\n basis.</p>"
}
},
"OutputS3BucketName": {
"target": "com.amazonaws.ssm#S3BucketName",
"traits": {
"smithy.api#documentation": "<p>The name of the S3 bucket.</p>"
}
},
"OutputS3KeyPrefix": {
"target": "com.amazonaws.ssm#S3KeyPrefix",
"traits": {
"smithy.api#documentation": "<p>The S3 bucket subfolder.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#Parameters",
"traits": {
"smithy.api#documentation": "<p>The parameters for the RUN_COMMAND task execution.</p>"
}
},
"ServiceRoleArn": {
"target": "com.amazonaws.ssm#ServiceRole",
"traits": {
"smithy.api#documentation": "<p>The ARN of the IAM service role to use to publish Amazon Simple Notification Service (Amazon SNS) notifications for\n maintenance window Run Command tasks.</p>"
}
},
"TimeoutSeconds": {
"target": "com.amazonaws.ssm#TimeoutSeconds",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>If this time is reached and the command has not already started running, it doesn't\n run.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The parameters for a RUN_COMMAND task type.</p>\n <p>For information about specifying and updating task parameters, see <a>RegisterTaskWithMaintenanceWindow</a> and <a>UpdateMaintenanceWindowTask</a>.</p>\n <note>\n \n <p>\n <code>LoggingInfo</code> has been deprecated. To specify an S3 bucket to contain logs, instead use the\n <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.\n For information about how Systems Manager handles these options for the supported maintenance\n window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n \n <p>\n <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,\n instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information\n about how Systems Manager handles these options for the supported maintenance window task\n types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n <p>For Run Command tasks, Systems Manager uses specified values for <code>TaskParameters</code> and\n <code>LoggingInfo</code> only if no values are specified for\n <code>TaskInvocationParameters</code>. </p>\n </note>"
}
},
"com.amazonaws.ssm#MaintenanceWindowSchedule": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
}
}
},
"com.amazonaws.ssm#MaintenanceWindowSearchMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1
}
}
},
"com.amazonaws.ssm#MaintenanceWindowStepFunctionsInput": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 4096
},
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#MaintenanceWindowStepFunctionsName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 80
}
}
},
"com.amazonaws.ssm#MaintenanceWindowStepFunctionsParameters": {
"type": "structure",
"members": {
"Input": {
"target": "com.amazonaws.ssm#MaintenanceWindowStepFunctionsInput",
"traits": {
"smithy.api#documentation": "<p>The inputs for the STEP_FUNCTIONS task.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowStepFunctionsName",
"traits": {
"smithy.api#documentation": "<p>The name of the STEP_FUNCTIONS task.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The parameters for a STEP_FUNCTIONS task.</p>\n <p>For information about specifying and updating task parameters, see <a>RegisterTaskWithMaintenanceWindow</a> and <a>UpdateMaintenanceWindowTask</a>.</p>\n <note>\n \n <p>\n <code>LoggingInfo</code> has been deprecated. To specify an S3 bucket to contain logs, instead use the\n <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.\n For information about how Systems Manager handles these options for the supported maintenance\n window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n \n <p>\n <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,\n instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information\n about how Systems Manager handles these options for the supported maintenance window task\n types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n <p>For Step Functions tasks, Systems Manager ignores any values specified for\n <code>TaskParameters</code> and <code>LoggingInfo</code>.</p>\n </note>"
}
},
"com.amazonaws.ssm#MaintenanceWindowStringDateTime": {
"type": "string"
},
"com.amazonaws.ssm#MaintenanceWindowTarget": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window to register the target with.</p>"
}
},
"WindowTargetId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTargetId",
"traits": {
"smithy.api#documentation": "<p>The ID of the target.</p>"
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#MaintenanceWindowResourceType",
"traits": {
"smithy.api#documentation": "<p>The type of target that is being registered with the maintenance window.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets, either instances or tags.</p>\n <p>Specify instances using the following format:</p>\n <p>\n <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code>\n </p>\n <p>Tags are specified using the following format:</p>\n <p>\n <code>Key=<tag name>,Values=<tag value></code>.</p>"
}
},
"OwnerInformation": {
"target": "com.amazonaws.ssm#OwnerInformation",
"traits": {
"smithy.api#documentation": "<p>A user-provided value that will be included in any CloudWatch events that are raised while\n running tasks for these targets in this maintenance window.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The name for the maintenance window target.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>A description for the target.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The target registered with the maintenance window.</p>"
}
},
"com.amazonaws.ssm#MaintenanceWindowTargetId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 36,
"max": 36
},
"smithy.api#pattern": "^[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}$"
}
},
"com.amazonaws.ssm#MaintenanceWindowTargetList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowTarget"
}
},
"com.amazonaws.ssm#MaintenanceWindowTask": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window where the task is registered.</p>"
}
},
"WindowTaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskId",
"traits": {
"smithy.api#documentation": "<p>The task ID.</p>"
}
},
"TaskArn": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskArn",
"traits": {
"smithy.api#documentation": "<p>The resource that the task uses during execution. For RUN_COMMAND and AUTOMATION task types,\n <code>TaskArn</code> is the Systems Manager document name or ARN. For LAMBDA tasks, it's the function name\n or ARN. For STEP_FUNCTIONS tasks, it's the state machine ARN.</p>"
}
},
"Type": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskType",
"traits": {
"smithy.api#documentation": "<p>The type of task. The type can be one of the following: RUN_COMMAND, AUTOMATION, LAMBDA, or\n STEP_FUNCTIONS.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets (either instances or tags). Instances are specified using\n Key=instanceids,Values=<instanceid1>,<instanceid2>. Tags are specified using\n Key=<tag name>,Values=<tag value>.</p>"
}
},
"TaskParameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters that should be passed to the task when it is run.</p>\n <note>\n <p>\n <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,\n instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information\n about how Systems Manager handles these options for the supported maintenance window task\n types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>"
}
},
"Priority": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskPriority",
"traits": {
"smithy.api#documentation": "<p>The priority of the task in the maintenance window. The lower the number, the higher the\n priority. Tasks that have the same priority are scheduled in parallel.</p>"
}
},
"LoggingInfo": {
"target": "com.amazonaws.ssm#LoggingInfo",
"traits": {
"smithy.api#documentation": "<p>Information about an S3 bucket to write task-level logs to.</p>\n <note>\n <p>\n <code>LoggingInfo</code> has been deprecated. To specify an S3 bucket to contain logs, instead use the\n <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.\n For information about how Systems Manager handles these options for the supported maintenance\n window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>"
}
},
"ServiceRoleArn": {
"target": "com.amazonaws.ssm#ServiceRole",
"traits": {
"smithy.api#documentation": "<p>The ARN of the IAM service role to use to publish Amazon Simple Notification Service (Amazon SNS) notifications for\n maintenance window Run Command tasks.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of targets this task can be run for, in parallel.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The maximum number of errors allowed before this task stops being scheduled.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The task name.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>A description of the task.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about a task defined for a maintenance window.</p>"
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskArn": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1600
}
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 36,
"max": 36
},
"smithy.api#pattern": "^[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}$"
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskInvocationParameters": {
"type": "structure",
"members": {
"RunCommand": {
"target": "com.amazonaws.ssm#MaintenanceWindowRunCommandParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters for a RUN_COMMAND task type.</p>"
}
},
"Automation": {
"target": "com.amazonaws.ssm#MaintenanceWindowAutomationParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters for an AUTOMATION task type.</p>"
}
},
"StepFunctions": {
"target": "com.amazonaws.ssm#MaintenanceWindowStepFunctionsParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters for a STEP_FUNCTIONS task type.</p>"
}
},
"Lambda": {
"target": "com.amazonaws.ssm#MaintenanceWindowLambdaParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters for a LAMBDA task type.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The parameters for task execution.</p>"
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowTask"
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskParameterName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 255
}
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskParameterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 255
},
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskParameterValueExpression": {
"type": "structure",
"members": {
"Values": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParameterValueList",
"traits": {
"smithy.api#documentation": "<p>This field contains an array of 0 or more strings, each 1 to 255 characters in\n length.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Defines the values for a task parameter.</p>",
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskParameterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParameterValue"
},
"traits": {
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskParameters": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParameterName"
},
"value": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParameterValueExpression"
},
"traits": {
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskParametersList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParameters"
},
"traits": {
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskPriority": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 0
}
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskTargetId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 36
}
}
},
"com.amazonaws.ssm#MaintenanceWindowTaskType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "RUN_COMMAND",
"name": "RunCommand"
},
{
"value": "AUTOMATION",
"name": "Automation"
},
{
"value": "STEP_FUNCTIONS",
"name": "StepFunctions"
},
{
"value": "LAMBDA",
"name": "Lambda"
}
]
}
},
"com.amazonaws.ssm#MaintenanceWindowTimezone": {
"type": "string"
},
"com.amazonaws.ssm#MaintenanceWindowsForTargetList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MaintenanceWindowIdentityForTarget"
}
},
"com.amazonaws.ssm#ManagedInstanceId": {
"type": "string",
"traits": {
"smithy.api#pattern": "^mi-[0-9a-f]{17}$"
}
},
"com.amazonaws.ssm#MaxConcurrency": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 7
},
"smithy.api#pattern": "^([1-9][0-9]*|[1-9][0-9]%|[1-9]%|100%)$"
}
},
"com.amazonaws.ssm#MaxDocumentSizeExceeded": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The size limit of a document is 64 KB.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#MaxErrors": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 7
},
"smithy.api#pattern": "^([1-9][0-9]*|[0]|[1-9][0-9]%|[0-9]%|100%)$"
}
},
"com.amazonaws.ssm#MaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#MaxResultsEC2Compatible": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 5,
"max": 50
}
}
},
"com.amazonaws.ssm#MetadataKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
},
"smithy.api#pattern": "^(?!\\s*$).+"
}
},
"com.amazonaws.ssm#MetadataKeysToDeleteList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#MetadataKey"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#MetadataMap": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#MetadataKey"
},
"value": {
"target": "com.amazonaws.ssm#MetadataValue"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 5
}
}
},
"com.amazonaws.ssm#MetadataValue": {
"type": "structure",
"members": {
"Value": {
"target": "com.amazonaws.ssm#MetadataValueString",
"traits": {
"smithy.api#documentation": "<p>Metadata value to assign to an Application Manager application.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Metadata to assign to an Application Manager application.</p>"
}
},
"com.amazonaws.ssm#MetadataValueString": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 4096
}
}
},
"com.amazonaws.ssm#ModifyDocumentPermission": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ModifyDocumentPermissionRequest"
},
"output": {
"target": "com.amazonaws.ssm#ModifyDocumentPermissionResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#DocumentLimitExceeded"
},
{
"target": "com.amazonaws.ssm#DocumentPermissionLimit"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidPermissionType"
}
],
"traits": {
"smithy.api#documentation": "<p>Shares a Systems Manager document publicly or privately. If you share a document privately, you must\n specify the AWS user account IDs for those people who can use the document. If you share a\n document publicly, you must specify <i>All</i> as the account ID.</p>"
}
},
"com.amazonaws.ssm#ModifyDocumentPermissionRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the document that you want to share.</p>",
"smithy.api#required": {}
}
},
"PermissionType": {
"target": "com.amazonaws.ssm#DocumentPermissionType",
"traits": {
"smithy.api#documentation": "<p>The permission type for the document. The permission type can be\n <i>Share</i>.</p>",
"smithy.api#required": {}
}
},
"AccountIdsToAdd": {
"target": "com.amazonaws.ssm#AccountIdList",
"traits": {
"smithy.api#documentation": "<p>The AWS user accounts that should have access to the document. The account IDs can either be\n a group of account IDs or <i>All</i>.</p>"
}
},
"AccountIdsToRemove": {
"target": "com.amazonaws.ssm#AccountIdList",
"traits": {
"smithy.api#documentation": "<p>The AWS user accounts that should no longer have access to the document. The AWS user\n account can either be a group of account IDs or <i>All</i>. This action has a\n higher priority than <i>AccountIdsToAdd</i>. If you specify an account ID to add\n and the same ID to remove, the system removes access to the document.</p>"
}
},
"SharedDocumentVersion": {
"target": "com.amazonaws.ssm#SharedDocumentVersion",
"traits": {
"smithy.api#documentation": "<p>(Optional) The version of the document to share. If it's not specified, the system choose\n the <code>Default</code> version to share.</p>"
}
}
}
},
"com.amazonaws.ssm#ModifyDocumentPermissionResponse": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#NextToken": {
"type": "string"
},
"com.amazonaws.ssm#NonCompliantSummary": {
"type": "structure",
"members": {
"NonCompliantCount": {
"target": "com.amazonaws.ssm#ComplianceSummaryCount",
"traits": {
"smithy.api#documentation": "<p>The total number of compliance items that are not compliant.</p>"
}
},
"SeveritySummary": {
"target": "com.amazonaws.ssm#SeveritySummary",
"traits": {
"smithy.api#documentation": "<p>A summary of the non-compliance severity by compliance type</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A summary of resources that are not compliant. The summary is organized according to\n resource type.</p>"
}
},
"com.amazonaws.ssm#NormalStringMap": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#String"
},
"value": {
"target": "com.amazonaws.ssm#String"
}
},
"com.amazonaws.ssm#NotificationArn": {
"type": "string"
},
"com.amazonaws.ssm#NotificationConfig": {
"type": "structure",
"members": {
"NotificationArn": {
"target": "com.amazonaws.ssm#NotificationArn",
"traits": {
"smithy.api#documentation": "<p>An Amazon Resource Name (ARN) for an Amazon Simple Notification Service (Amazon SNS) topic. Run Command pushes\n notifications about command status changes to this topic.</p>"
}
},
"NotificationEvents": {
"target": "com.amazonaws.ssm#NotificationEventList",
"traits": {
"smithy.api#documentation": "<p>The different events for which you can receive notifications. These events include the\n following: All (events), InProgress, Success, TimedOut, Cancelled, Failed. To learn more about\n these events, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/monitoring-sns-notifications.html\">Monitoring Systems\n Manager status changes using Amazon SNS notifications</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"NotificationType": {
"target": "com.amazonaws.ssm#NotificationType",
"traits": {
"smithy.api#documentation": "<p>Command: Receive notification when the status of a command changes. Invocation: For commands\n sent to multiple instances, receive notification on a per-instance basis when the status of a\n command changes. </p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Configurations for sending notifications.</p>"
}
},
"com.amazonaws.ssm#NotificationEvent": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "All",
"name": "ALL"
},
{
"value": "InProgress",
"name": "IN_PROGRESS"
},
{
"value": "Success",
"name": "SUCCESS"
},
{
"value": "TimedOut",
"name": "TIMED_OUT"
},
{
"value": "Cancelled",
"name": "CANCELLED"
},
{
"value": "Failed",
"name": "FAILED"
}
]
}
},
"com.amazonaws.ssm#NotificationEventList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#NotificationEvent"
}
},
"com.amazonaws.ssm#NotificationType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Command",
"name": "Command"
},
{
"value": "Invocation",
"name": "Invocation"
}
]
}
},
"com.amazonaws.ssm#OperatingSystem": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "WINDOWS",
"name": "Windows"
},
{
"value": "AMAZON_LINUX",
"name": "AmazonLinux"
},
{
"value": "AMAZON_LINUX_2",
"name": "AmazonLinux2"
},
{
"value": "UBUNTU",
"name": "Ubuntu"
},
{
"value": "REDHAT_ENTERPRISE_LINUX",
"name": "RedhatEnterpriseLinux"
},
{
"value": "SUSE",
"name": "Suse"
},
{
"value": "CENTOS",
"name": "CentOS"
},
{
"value": "ORACLE_LINUX",
"name": "OracleLinux"
},
{
"value": "DEBIAN",
"name": "Debian"
},
{
"value": "MACOS",
"name": "MacOS"
}
]
}
},
"com.amazonaws.ssm#OpsAggregator": {
"type": "structure",
"members": {
"AggregatorType": {
"target": "com.amazonaws.ssm#OpsAggregatorType",
"traits": {
"smithy.api#documentation": "<p>Either a Range or Count aggregator for limiting an OpsItem summary.</p>"
}
},
"TypeName": {
"target": "com.amazonaws.ssm#OpsDataTypeName",
"traits": {
"smithy.api#documentation": "<p>The data type name to use for viewing counts of OpsItems.</p>"
}
},
"AttributeName": {
"target": "com.amazonaws.ssm#OpsDataAttributeName",
"traits": {
"smithy.api#documentation": "<p>The name of an OpsItem attribute on which to limit the count of OpsItems.</p>"
}
},
"Values": {
"target": "com.amazonaws.ssm#OpsAggregatorValueMap",
"traits": {
"smithy.api#documentation": "<p>The aggregator value.</p>"
}
},
"Filters": {
"target": "com.amazonaws.ssm#OpsFilterList",
"traits": {
"smithy.api#documentation": "<p>The aggregator filters.</p>"
}
},
"Aggregators": {
"target": "com.amazonaws.ssm#OpsAggregatorList",
"traits": {
"smithy.api#documentation": "<p>A nested aggregator for viewing counts of OpsItems.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>One or more aggregators for viewing counts of OpsItems using different dimensions such as\n <code>Source</code>, <code>CreatedTime</code>, or <code>Source and CreatedTime</code>, to name a\n few.</p>"
}
},
"com.amazonaws.ssm#OpsAggregatorList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsAggregator",
"traits": {
"smithy.api#xmlName": "Aggregator"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 12
}
}
},
"com.amazonaws.ssm#OpsAggregatorType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 20
},
"smithy.api#pattern": "^(range|count|sum)"
}
},
"com.amazonaws.ssm#OpsAggregatorValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 2048
}
}
},
"com.amazonaws.ssm#OpsAggregatorValueKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 32
}
}
},
"com.amazonaws.ssm#OpsAggregatorValueMap": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#OpsAggregatorValueKey"
},
"value": {
"target": "com.amazonaws.ssm#OpsAggregatorValue"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 5
}
}
},
"com.amazonaws.ssm#OpsDataAttributeName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
}
}
},
"com.amazonaws.ssm#OpsDataTypeName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 100
},
"smithy.api#pattern": "^(AWS|Custom):.*$"
}
},
"com.amazonaws.ssm#OpsEntity": {
"type": "structure",
"members": {
"Id": {
"target": "com.amazonaws.ssm#OpsEntityId",
"traits": {
"smithy.api#documentation": "<p>The query ID.</p>"
}
},
"Data": {
"target": "com.amazonaws.ssm#OpsEntityItemMap",
"traits": {
"smithy.api#documentation": "<p>The data returned by the query.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The result of the query.</p>"
}
},
"com.amazonaws.ssm#OpsEntityId": {
"type": "string"
},
"com.amazonaws.ssm#OpsEntityItem": {
"type": "structure",
"members": {
"CaptureTime": {
"target": "com.amazonaws.ssm#OpsEntityItemCaptureTime",
"traits": {
"smithy.api#documentation": "<p>The time OpsItem data was captured.</p>"
}
},
"Content": {
"target": "com.amazonaws.ssm#OpsEntityItemEntryList",
"traits": {
"smithy.api#documentation": "<p>The detailed data content for an OpsItem summaries result item.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The OpsItem summaries result item.</p>"
}
},
"com.amazonaws.ssm#OpsEntityItemCaptureTime": {
"type": "string",
"traits": {
"smithy.api#pattern": "^(20)[0-9][0-9]-(0[1-9]|1[012])-([12][0-9]|3[01]|0[1-9])(T)(2[0-3]|[0-1][0-9])(:[0-5][0-9])(:[0-5][0-9])(Z)$"
}
},
"com.amazonaws.ssm#OpsEntityItemEntry": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#AttributeName"
},
"value": {
"target": "com.amazonaws.ssm#AttributeValue"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 50
}
}
},
"com.amazonaws.ssm#OpsEntityItemEntryList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsEntityItemEntry"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 10000
}
}
},
"com.amazonaws.ssm#OpsEntityItemKey": {
"type": "string"
},
"com.amazonaws.ssm#OpsEntityItemMap": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#OpsEntityItemKey"
},
"value": {
"target": "com.amazonaws.ssm#OpsEntityItem"
}
},
"com.amazonaws.ssm#OpsEntityList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsEntity",
"traits": {
"smithy.api#xmlName": "Entity"
}
}
},
"com.amazonaws.ssm#OpsFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#OpsFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#OpsFilterValueList",
"traits": {
"smithy.api#documentation": "<p>The filter value.</p>",
"smithy.api#required": {}
}
},
"Type": {
"target": "com.amazonaws.ssm#OpsFilterOperatorType",
"traits": {
"smithy.api#documentation": "<p>The type of filter.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A filter for viewing OpsItem summaries.</p>"
}
},
"com.amazonaws.ssm#OpsFilterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 200
}
}
},
"com.amazonaws.ssm#OpsFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsFilter",
"traits": {
"smithy.api#xmlName": "OpsFilter"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 5
}
}
},
"com.amazonaws.ssm#OpsFilterOperatorType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Equal",
"name": "EQUAL"
},
{
"value": "NotEqual",
"name": "NOT_EQUAL"
},
{
"value": "BeginWith",
"name": "BEGIN_WITH"
},
{
"value": "LessThan",
"name": "LESS_THAN"
},
{
"value": "GreaterThan",
"name": "GREATER_THAN"
},
{
"value": "Exists",
"name": "EXISTS"
}
]
}
},
"com.amazonaws.ssm#OpsFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 256
}
}
},
"com.amazonaws.ssm#OpsFilterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsFilterValue",
"traits": {
"smithy.api#xmlName": "FilterValue"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 40
}
}
},
"com.amazonaws.ssm#OpsItem": {
"type": "structure",
"members": {
"CreatedBy": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ARN of the AWS account that created the OpsItem.</p>"
}
},
"OpsItemType": {
"target": "com.amazonaws.ssm#OpsItemType",
"traits": {
"smithy.api#documentation": "<p>The type of OpsItem. Currently, the only valid values are <code>/aws/changerequest</code>\n and <code>/aws/issue</code>.</p>"
}
},
"CreatedTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the OpsItem was created.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#OpsItemDescription",
"traits": {
"smithy.api#documentation": "<p>The OpsItem description.</p>"
}
},
"LastModifiedBy": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ARN of the AWS account that last updated the OpsItem.</p>"
}
},
"LastModifiedTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the OpsItem was last updated.</p>"
}
},
"Notifications": {
"target": "com.amazonaws.ssm#OpsItemNotifications",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an SNS topic where notifications are sent when this\n OpsItem is edited or changed.</p>"
}
},
"Priority": {
"target": "com.amazonaws.ssm#OpsItemPriority",
"traits": {
"smithy.api#documentation": "<p>The importance of this OpsItem in relation to other OpsItems in the system.</p>"
}
},
"RelatedOpsItems": {
"target": "com.amazonaws.ssm#RelatedOpsItems",
"traits": {
"smithy.api#documentation": "<p>One or more OpsItems that share something in common with the current OpsItem. For example,\n related OpsItems can include OpsItems with similar error messages, impacted resources, or\n statuses for the impacted resource.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#OpsItemStatus",
"traits": {
"smithy.api#documentation": "<p>The OpsItem status. Status can be <code>Open</code>, <code>In Progress</code>, or\n <code>Resolved</code>. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-working-with-OpsItems-editing-details.html\">Editing OpsItem details</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"OpsItemId": {
"target": "com.amazonaws.ssm#OpsItemId",
"traits": {
"smithy.api#documentation": "<p>The ID of the OpsItem.</p>"
}
},
"Version": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The version of this OpsItem. Each time the OpsItem is edited the version number increments\n by one.</p>"
}
},
"Title": {
"target": "com.amazonaws.ssm#OpsItemTitle",
"traits": {
"smithy.api#documentation": "<p>A short heading that describes the nature of the OpsItem and the impacted resource.</p>"
}
},
"Source": {
"target": "com.amazonaws.ssm#OpsItemSource",
"traits": {
"smithy.api#documentation": "<p>The origin of the OpsItem, such as Amazon EC2 or Systems Manager. The impacted resource is a subset of\n source.</p>"
}
},
"OperationalData": {
"target": "com.amazonaws.ssm#OpsItemOperationalData",
"traits": {
"smithy.api#documentation": "<p>Operational data is custom data that provides useful reference details about the OpsItem.\n For example, you can specify log files, error strings, license keys, troubleshooting tips, or\n other relevant data. You enter operational data as key-value pairs. The key has a maximum length\n of 128 characters. The value has a maximum size of 20 KB.</p>\n <important>\n <p>Operational data keys <i>can't</i> begin with the following: amazon, aws,\n amzn, ssm, /amazon, /aws, /amzn, /ssm.</p>\n </important>\n <p>You can choose to make the data searchable by other users in the account or you can restrict\n search access. Searchable data means that all users with access to the OpsItem Overview page (as\n provided by the <a>DescribeOpsItems</a> API action) can view and search on the\n specified data. Operational data that is not searchable is only viewable by users who have access\n to the OpsItem (as provided by the <a>GetOpsItem</a> API action).</p>\n <p>Use the <code>/aws/resources</code> key in OperationalData to specify a related resource in\n the request. Use the <code>/aws/automations</code> key in OperationalData to associate an\n Automation runbook with the OpsItem. To view AWS CLI example commands that use these keys, see\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems\">Creating OpsItems manually</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"Category": {
"target": "com.amazonaws.ssm#OpsItemCategory",
"traits": {
"smithy.api#documentation": "<p>An OpsItem category. Category options include: Availability, Cost, Performance, Recovery,\n Security.</p>"
}
},
"Severity": {
"target": "com.amazonaws.ssm#OpsItemSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity of the OpsItem. Severity options range from 1 to 4.</p>"
}
},
"ActualStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time a runbook workflow started. Currently reported only for the OpsItem type\n <code>/aws/changerequest</code>.</p>"
}
},
"ActualEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time a runbook workflow ended. Currently reported only for the OpsItem type\n <code>/aws/changerequest</code>.</p>"
}
},
"PlannedStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time specified in a change request for a runbook workflow to start. Currently supported\n only for the OpsItem type <code>/aws/changerequest</code>.</p>"
}
},
"PlannedEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time specified in a change request for a runbook workflow to end. Currently supported\n only for the OpsItem type <code>/aws/changerequest</code>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Operations engineers and IT professionals use OpsCenter to view, investigate, and remediate\n operational issues impacting the performance and health of their AWS resources. For more\n information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html\">AWS Systems Manager OpsCenter</a> in the\n <i>AWS Systems Manager User Guide</i>. </p>"
}
},
"com.amazonaws.ssm#OpsItemAlreadyExistsException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
},
"OpsItemId": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The OpsItem already exists.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsItemCategory": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
},
"smithy.api#pattern": "^(?!\\s*$).+"
}
},
"com.amazonaws.ssm#OpsItemDataKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
},
"smithy.api#pattern": "^(?!\\s*$).+"
}
},
"com.amazonaws.ssm#OpsItemDataType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "SearchableString",
"name": "SEARCHABLE_STRING"
},
{
"value": "String",
"name": "STRING"
}
]
}
},
"com.amazonaws.ssm#OpsItemDataValue": {
"type": "structure",
"members": {
"Value": {
"target": "com.amazonaws.ssm#OpsItemDataValueString",
"traits": {
"smithy.api#documentation": "<p>The value of the OperationalData key.</p>"
}
},
"Type": {
"target": "com.amazonaws.ssm#OpsItemDataType",
"traits": {
"smithy.api#documentation": "<p>The type of key-value pair. Valid types include <code>SearchableString</code> and\n <code>String</code>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An object that defines the value of the key and its type in the OperationalData map.</p>"
}
},
"com.amazonaws.ssm#OpsItemDataValueString": {
"type": "string",
"traits": {
"smithy.api#pattern": "[\\s\\S]*\\S[\\s\\S]*"
}
},
"com.amazonaws.ssm#OpsItemDescription": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 2048
},
"smithy.api#pattern": "[\\s\\S]*\\S[\\s\\S]*"
}
},
"com.amazonaws.ssm#OpsItemEventFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#OpsItemEventFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter key. Currently, the only supported value is\n <code>OpsItemId</code>.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#OpsItemEventFilterValues",
"traits": {
"smithy.api#documentation": "<p>The values for the filter, consisting of one or more OpsItem IDs.</p>",
"smithy.api#required": {}
}
},
"Operator": {
"target": "com.amazonaws.ssm#OpsItemEventFilterOperator",
"traits": {
"smithy.api#documentation": "<p>The operator used by the filter call. Currently, the only supported value is\n <code>Equal</code>.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes a filter for a specific list of OpsItem events. You can filter event information\n by using tags. You specify tags by using a key-value pair mapping. </p>"
}
},
"com.amazonaws.ssm#OpsItemEventFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "OpsItemId",
"name": "OPSITEM_ID"
}
]
}
},
"com.amazonaws.ssm#OpsItemEventFilterOperator": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Equal",
"name": "EQUAL"
}
]
}
},
"com.amazonaws.ssm#OpsItemEventFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 15
},
"smithy.api#pattern": "^(oi)-[0-9a-f]{12}$"
}
},
"com.amazonaws.ssm#OpsItemEventFilterValues": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsItemEventFilterValue"
}
},
"com.amazonaws.ssm#OpsItemEventFilters": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsItemEventFilter"
}
},
"com.amazonaws.ssm#OpsItemEventMaxResults": {
"type": "integer",
"traits": {
"smithy.api#box": {},
"smithy.api#range": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#OpsItemEventSummaries": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsItemEventSummary"
}
},
"com.amazonaws.ssm#OpsItemEventSummary": {
"type": "structure",
"members": {
"OpsItemId": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ID of the OpsItem.</p>"
}
},
"EventId": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ID of the OpsItem event.</p>"
}
},
"Source": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The source of the OpsItem event.</p>"
}
},
"DetailType": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The type of information provided as a detail.</p>"
}
},
"Detail": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>Specific information about the OpsItem event.</p>"
}
},
"CreatedBy": {
"target": "com.amazonaws.ssm#OpsItemIdentity",
"traits": {
"smithy.api#documentation": "<p>Information about the user or resource that created the OpsItem event.</p>"
}
},
"CreatedTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the OpsItem event was created.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Summary information about an OpsItem event or that associated an OpsItem with a related\n item.</p>"
}
},
"com.amazonaws.ssm#OpsItemFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#OpsItemFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#OpsItemFilterValues",
"traits": {
"smithy.api#documentation": "<p>The filter value.</p>",
"smithy.api#required": {}
}
},
"Operator": {
"target": "com.amazonaws.ssm#OpsItemFilterOperator",
"traits": {
"smithy.api#documentation": "<p>The operator used by the filter call.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes an OpsItem filter.</p>"
}
},
"com.amazonaws.ssm#OpsItemFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Status",
"name": "STATUS"
},
{
"value": "CreatedBy",
"name": "CREATED_BY"
},
{
"value": "Source",
"name": "SOURCE"
},
{
"value": "Priority",
"name": "PRIORITY"
},
{
"value": "Title",
"name": "TITLE"
},
{
"value": "OpsItemId",
"name": "OPSITEM_ID"
},
{
"value": "CreatedTime",
"name": "CREATED_TIME"
},
{
"value": "LastModifiedTime",
"name": "LAST_MODIFIED_TIME"
},
{
"value": "ActualStartTime",
"name": "ACTUAL_START_TIME"
},
{
"value": "ActualEndTime",
"name": "ACTUAL_END_TIME"
},
{
"value": "PlannedStartTime",
"name": "PLANNED_START_TIME"
},
{
"value": "PlannedEndTime",
"name": "PLANNED_END_TIME"
},
{
"value": "OperationalData",
"name": "OPERATIONAL_DATA"
},
{
"value": "OperationalDataKey",
"name": "OPERATIONAL_DATA_KEY"
},
{
"value": "OperationalDataValue",
"name": "OPERATIONAL_DATA_VALUE"
},
{
"value": "ResourceId",
"name": "RESOURCE_ID"
},
{
"value": "AutomationId",
"name": "AUTOMATION_ID"
},
{
"value": "Category",
"name": "CATEGORY"
},
{
"value": "Severity",
"name": "SEVERITY"
},
{
"value": "OpsItemType",
"name": "OPSITEM_TYPE"
},
{
"value": "ChangeRequestByRequesterArn",
"name": "CHANGE_REQUEST_REQUESTER_ARN"
},
{
"value": "ChangeRequestByRequesterName",
"name": "CHANGE_REQUEST_REQUESTER_NAME"
},
{
"value": "ChangeRequestByApproverArn",
"name": "CHANGE_REQUEST_APPROVER_ARN"
},
{
"value": "ChangeRequestByApproverName",
"name": "CHANGE_REQUEST_APPROVER_NAME"
},
{
"value": "ChangeRequestByTemplate",
"name": "CHANGE_REQUEST_TEMPLATE"
},
{
"value": "ChangeRequestByTargetsResourceGroup",
"name": "CHANGE_REQUEST_TARGETS_RESOURCE_GROUP"
}
]
}
},
"com.amazonaws.ssm#OpsItemFilterOperator": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Equal",
"name": "EQUAL"
},
{
"value": "Contains",
"name": "CONTAINS"
},
{
"value": "GreaterThan",
"name": "GREATER_THAN"
},
{
"value": "LessThan",
"name": "LESS_THAN"
}
]
}
},
"com.amazonaws.ssm#OpsItemFilterValue": {
"type": "string"
},
"com.amazonaws.ssm#OpsItemFilterValues": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsItemFilterValue"
}
},
"com.amazonaws.ssm#OpsItemFilters": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsItemFilter"
}
},
"com.amazonaws.ssm#OpsItemId": {
"type": "string",
"traits": {
"smithy.api#pattern": "^(oi)-[0-9a-f]{12}$"
}
},
"com.amazonaws.ssm#OpsItemIdentity": {
"type": "structure",
"members": {
"Arn": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the IAM entity that created the OpsItem event.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the user or resource that created an OpsItem event.</p>"
}
},
"com.amazonaws.ssm#OpsItemInvalidParameterException": {
"type": "structure",
"members": {
"ParameterNames": {
"target": "com.amazonaws.ssm#OpsItemParameterNamesList"
},
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>A specified parameter argument isn't valid. Verify the available arguments and try\n again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsItemLimitExceededException": {
"type": "structure",
"members": {
"ResourceTypes": {
"target": "com.amazonaws.ssm#OpsItemParameterNamesList"
},
"Limit": {
"target": "com.amazonaws.ssm#Integer"
},
"LimitType": {
"target": "com.amazonaws.ssm#String"
},
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The request caused OpsItems to exceed one or more quotas. For information about OpsItem\n quotas, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-learn-more.html#OpsCenter-learn-more-limits\">What are the resource limits for OpsCenter?</a>.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsItemMaxResults": {
"type": "integer",
"traits": {
"smithy.api#box": {},
"smithy.api#range": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#OpsItemNotFoundException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified OpsItem ID doesn't exist. Verify the ID and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsItemNotification": {
"type": "structure",
"members": {
"Arn": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an SNS topic where notifications are sent when this\n OpsItem is edited or changed.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A notification about the OpsItem.</p>"
}
},
"com.amazonaws.ssm#OpsItemNotifications": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsItemNotification"
}
},
"com.amazonaws.ssm#OpsItemOperationalData": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#OpsItemDataKey"
},
"value": {
"target": "com.amazonaws.ssm#OpsItemDataValue"
}
},
"com.amazonaws.ssm#OpsItemOpsDataKeysList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#String"
}
},
"com.amazonaws.ssm#OpsItemParameterNamesList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#String"
}
},
"com.amazonaws.ssm#OpsItemPriority": {
"type": "integer",
"traits": {
"smithy.api#box": {},
"smithy.api#range": {
"min": 1,
"max": 5
}
}
},
"com.amazonaws.ssm#OpsItemRelatedItemAlreadyExistsException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
},
"ResourceUri": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationResourceUri"
},
"OpsItemId": {
"target": "com.amazonaws.ssm#OpsItemId"
}
},
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) is already associated with the OpsItem.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsItemRelatedItemAssociationId": {
"type": "string"
},
"com.amazonaws.ssm#OpsItemRelatedItemAssociationNotFoundException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The association was not found using the parameters you specified in the call. Verify the\n information and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsItemRelatedItemAssociationResourceType": {
"type": "string"
},
"com.amazonaws.ssm#OpsItemRelatedItemAssociationResourceUri": {
"type": "string"
},
"com.amazonaws.ssm#OpsItemRelatedItemAssociationType": {
"type": "string"
},
"com.amazonaws.ssm#OpsItemRelatedItemSummaries": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemSummary"
}
},
"com.amazonaws.ssm#OpsItemRelatedItemSummary": {
"type": "structure",
"members": {
"OpsItemId": {
"target": "com.amazonaws.ssm#OpsItemId",
"traits": {
"smithy.api#documentation": "<p>The OpsItem ID.</p>"
}
},
"AssociationId": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationId",
"traits": {
"smithy.api#documentation": "<p>The association ID.</p>"
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationResourceType",
"traits": {
"smithy.api#documentation": "<p>The resource type.</p>"
}
},
"AssociationType": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationType",
"traits": {
"smithy.api#documentation": "<p>The association type.</p>"
}
},
"ResourceUri": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemAssociationResourceUri",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the related-item resource.</p>"
}
},
"CreatedBy": {
"target": "com.amazonaws.ssm#OpsItemIdentity"
},
"CreatedTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the related-item association was created.</p>"
}
},
"LastModifiedBy": {
"target": "com.amazonaws.ssm#OpsItemIdentity"
},
"LastModifiedTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time the related-item association was last updated.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Summary information about related-item resources for an OpsItem.</p>"
}
},
"com.amazonaws.ssm#OpsItemRelatedItemsFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemsFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter key. Supported values include <code>ResourceUri</code>,\n <code>ResourceType</code>, or <code>AssociationId</code>.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemsFilterValues",
"traits": {
"smithy.api#documentation": "<p>The values for the filter.</p>",
"smithy.api#required": {}
}
},
"Operator": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemsFilterOperator",
"traits": {
"smithy.api#documentation": "<p>The operator used by the filter call. The only supported operator is\n <code>EQUAL</code>.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes a filter for a specific list of related-item resources. </p>"
}
},
"com.amazonaws.ssm#OpsItemRelatedItemsFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "ResourceType",
"name": "RESOURCE_TYPE"
},
{
"value": "AssociationId",
"name": "ASSOCIATION_ID"
},
{
"value": "ResourceUri",
"name": "RESOURCE_URI"
}
]
}
},
"com.amazonaws.ssm#OpsItemRelatedItemsFilterOperator": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Equal",
"name": "EQUAL"
}
]
}
},
"com.amazonaws.ssm#OpsItemRelatedItemsFilterValue": {
"type": "string"
},
"com.amazonaws.ssm#OpsItemRelatedItemsFilterValues": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemsFilterValue"
}
},
"com.amazonaws.ssm#OpsItemRelatedItemsFilters": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsItemRelatedItemsFilter"
}
},
"com.amazonaws.ssm#OpsItemRelatedItemsMaxResults": {
"type": "integer",
"traits": {
"smithy.api#box": {},
"smithy.api#range": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#OpsItemSeverity": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
},
"smithy.api#pattern": "^(?!\\s*$).+"
}
},
"com.amazonaws.ssm#OpsItemSource": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
},
"smithy.api#pattern": "^(?!\\s*$).+"
}
},
"com.amazonaws.ssm#OpsItemStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Open",
"name": "OPEN"
},
{
"value": "InProgress",
"name": "IN_PROGRESS"
},
{
"value": "Resolved",
"name": "RESOLVED"
},
{
"value": "Pending",
"name": "PENDING"
},
{
"value": "TimedOut",
"name": "TIMED_OUT"
},
{
"value": "Cancelling",
"name": "CANCELLING"
},
{
"value": "Cancelled",
"name": "CANCELLED"
},
{
"value": "Failed",
"name": "FAILED"
},
{
"value": "CompletedWithSuccess",
"name": "COMPLETED_WITH_SUCCESS"
},
{
"value": "CompletedWithFailure",
"name": "COMPLETED_WITH_FAILURE"
},
{
"value": "Scheduled",
"name": "SCHEDULED"
},
{
"value": "RunbookInProgress",
"name": "RUNBOOK_IN_PROGRESS"
},
{
"value": "PendingChangeCalendarOverride",
"name": "PENDING_CHANGE_CALENDAR_OVERRIDE"
},
{
"value": "ChangeCalendarOverrideApproved",
"name": "CHANGE_CALENDAR_OVERRIDE_APPROVED"
},
{
"value": "ChangeCalendarOverrideRejected",
"name": "CHANGE_CALENDAR_OVERRIDE_REJECTED"
},
{
"value": "PendingApproval",
"name": "PENDING_APPROVAL"
},
{
"value": "Approved",
"name": "APPROVED"
},
{
"value": "Rejected",
"name": "REJECTED"
}
]
}
},
"com.amazonaws.ssm#OpsItemSummaries": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsItemSummary"
}
},
"com.amazonaws.ssm#OpsItemSummary": {
"type": "structure",
"members": {
"CreatedBy": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the IAM entity that created the OpsItem.</p>"
}
},
"CreatedTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the OpsItem was created.</p>"
}
},
"LastModifiedBy": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the IAM entity that created the OpsItem.</p>"
}
},
"LastModifiedTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the OpsItem was last updated.</p>"
}
},
"Priority": {
"target": "com.amazonaws.ssm#OpsItemPriority",
"traits": {
"smithy.api#documentation": "<p>The importance of this OpsItem in relation to other OpsItems in the system.</p>"
}
},
"Source": {
"target": "com.amazonaws.ssm#OpsItemSource",
"traits": {
"smithy.api#documentation": "<p>The impacted AWS resource.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#OpsItemStatus",
"traits": {
"smithy.api#documentation": "<p>The OpsItem status. Status can be <code>Open</code>, <code>In Progress</code>, or\n <code>Resolved</code>.</p>"
}
},
"OpsItemId": {
"target": "com.amazonaws.ssm#OpsItemId",
"traits": {
"smithy.api#documentation": "<p>The ID of the OpsItem.</p>"
}
},
"Title": {
"target": "com.amazonaws.ssm#OpsItemTitle",
"traits": {
"smithy.api#documentation": "<p>A short heading that describes the nature of the OpsItem and the impacted resource.</p>"
}
},
"OperationalData": {
"target": "com.amazonaws.ssm#OpsItemOperationalData",
"traits": {
"smithy.api#documentation": "<p>Operational data is custom data that provides useful reference details about the OpsItem.\n </p>"
}
},
"Category": {
"target": "com.amazonaws.ssm#OpsItemCategory",
"traits": {
"smithy.api#documentation": "<p>A list of OpsItems by category.</p>"
}
},
"Severity": {
"target": "com.amazonaws.ssm#OpsItemSeverity",
"traits": {
"smithy.api#documentation": "<p>A list of OpsItems by severity.</p>"
}
},
"OpsItemType": {
"target": "com.amazonaws.ssm#OpsItemType",
"traits": {
"smithy.api#documentation": "<p>The type of OpsItem. Currently, the only valid values are <code>/aws/changerequest</code>\n and <code>/aws/issue</code>.</p>"
}
},
"ActualStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time a runbook workflow started. Currently reported only for the OpsItem type\n <code>/aws/changerequest</code>.</p>"
}
},
"ActualEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time a runbook workflow ended. Currently reported only for the OpsItem type\n <code>/aws/changerequest</code>.</p>"
}
},
"PlannedStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time specified in a change request for a runbook workflow to start. Currently supported\n only for the OpsItem type <code>/aws/changerequest</code>.</p>"
}
},
"PlannedEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time specified in a change request for a runbook workflow to end. Currently supported\n only for the OpsItem type <code>/aws/changerequest</code>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A count of OpsItems.</p>"
}
},
"com.amazonaws.ssm#OpsItemTitle": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
},
"smithy.api#pattern": "^(?!\\s*$).+"
}
},
"com.amazonaws.ssm#OpsItemType": {
"type": "string"
},
"com.amazonaws.ssm#OpsMetadata": {
"type": "structure",
"members": {
"ResourceId": {
"target": "com.amazonaws.ssm#OpsMetadataResourceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the Application Manager application.</p>"
}
},
"OpsMetadataArn": {
"target": "com.amazonaws.ssm#OpsMetadataArn",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the OpsMetadata Object or blob.</p>"
}
},
"LastModifiedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the OpsMetadata object was last updated.</p>"
}
},
"LastModifiedUser": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The user name who last updated the OpsMetadata object.</p>"
}
},
"CreationDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the OpsMetadata objects was created.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Operational metadata for an application in Application Manager.</p>"
}
},
"com.amazonaws.ssm#OpsMetadataAlreadyExistsException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>An OpsMetadata object already exists for the selected resource.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsMetadataArn": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1011
},
"smithy.api#pattern": "arn:(aws[a-zA-Z-]*)?:ssm:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:opsmetadata\\/([a-zA-Z0-9-_\\.\\/]*)"
}
},
"com.amazonaws.ssm#OpsMetadataFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#OpsMetadataFilterKey",
"traits": {
"smithy.api#documentation": "<p>A filter key.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#OpsMetadataFilterValueList",
"traits": {
"smithy.api#documentation": "<p>A filter value.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>A filter to limit the number of OpsMetadata objects displayed.</p>"
}
},
"com.amazonaws.ssm#OpsMetadataFilterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
},
"smithy.api#pattern": "^(?!\\s*$).+"
}
},
"com.amazonaws.ssm#OpsMetadataFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsMetadataFilter"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 10
}
}
},
"com.amazonaws.ssm#OpsMetadataFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.ssm#OpsMetadataFilterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsMetadataFilterValue"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#OpsMetadataInvalidArgumentException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>One of the arguments passed is invalid. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsMetadataKeyLimitExceededException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The OpsMetadata object exceeds the maximum number of OpsMetadata keys that you can assign to\n an application in Application Manager.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsMetadataLimitExceededException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Your account reached the maximum number of OpsMetadata objects allowed by Application Manager. The\n maximum is 200 OpsMetadata objects. Delete one or more OpsMetadata object and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsMetadataList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsMetadata"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#OpsMetadataNotFoundException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The OpsMetadata object does not exist. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsMetadataResourceId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
},
"smithy.api#pattern": "^(?!\\s*$).+"
}
},
"com.amazonaws.ssm#OpsMetadataTooManyUpdatesException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The system is processing too many concurrent updates. Wait a few moments and try\n again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#OpsResultAttribute": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#OpsDataTypeName",
"traits": {
"smithy.api#documentation": "<p>Name of the data type. Valid value: AWS:OpsItem, AWS:EC2InstanceInformation,\n AWS:OpsItemTrendline, or AWS:ComplianceSummary.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>The OpsItem data type to return.</p>"
}
},
"com.amazonaws.ssm#OpsResultAttributeList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#OpsResultAttribute",
"traits": {
"smithy.api#xmlName": "OpsResultAttribute"
}
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#OutputSource": {
"type": "structure",
"members": {
"OutputSourceId": {
"target": "com.amazonaws.ssm#OutputSourceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the output source, for example the URL of an S3 bucket.</p>"
}
},
"OutputSourceType": {
"target": "com.amazonaws.ssm#OutputSourceType",
"traits": {
"smithy.api#documentation": "<p>The type of source where the association execution details are stored, for example,\n Amazon S3.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the source where the association execution details are stored.</p>"
}
},
"com.amazonaws.ssm#OutputSourceId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 36,
"max": 36
}
}
},
"com.amazonaws.ssm#OutputSourceType": {
"type": "string"
},
"com.amazonaws.ssm#OwnerInformation": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
},
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#PSParameterName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 2048
}
}
},
"com.amazonaws.ssm#PSParameterSelector": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 128
}
}
},
"com.amazonaws.ssm#PSParameterValue": {
"type": "string"
},
"com.amazonaws.ssm#PSParameterVersion": {
"type": "long"
},
"com.amazonaws.ssm#Parameter": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#PSParameterName",
"traits": {
"smithy.api#documentation": "<p>The name of the parameter.</p>"
}
},
"Type": {
"target": "com.amazonaws.ssm#ParameterType",
"traits": {
"smithy.api#documentation": "<p>The type of parameter. Valid values include the following: <code>String</code>,\n <code>StringList</code>, and <code>SecureString</code>.</p>"
}
},
"Value": {
"target": "com.amazonaws.ssm#PSParameterValue",
"traits": {
"smithy.api#documentation": "<p>The parameter value.</p>"
}
},
"Version": {
"target": "com.amazonaws.ssm#PSParameterVersion",
"traits": {
"smithy.api#documentation": "<p>The parameter version.</p>"
}
},
"Selector": {
"target": "com.amazonaws.ssm#PSParameterSelector",
"traits": {
"smithy.api#documentation": "<p>Either the version number or the label used to retrieve the parameter value. Specify\n selectors by using one of the following formats:</p>\n <p>parameter_name:version</p>\n <p>parameter_name:label</p>"
}
},
"SourceResult": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>Applies to parameters that reference information in other AWS services. SourceResult is the\n raw result or response from the source.</p>"
}
},
"LastModifiedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>Date the parameter was last changed or updated and the parameter version was created.</p>"
}
},
"ARN": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the parameter.</p>"
}
},
"DataType": {
"target": "com.amazonaws.ssm#ParameterDataType",
"traits": {
"smithy.api#documentation": "<p>The data type of the parameter, such as <code>text</code> or <code>aws:ec2:image</code>. The\n default is <code>text</code>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An Systems Manager parameter in Parameter Store.</p>"
}
},
"com.amazonaws.ssm#ParameterAlreadyExists": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The parameter already exists. You can't create duplicate parameters.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ParameterDataType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 128
}
}
},
"com.amazonaws.ssm#ParameterDescription": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 1024
}
}
},
"com.amazonaws.ssm#ParameterHistory": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#PSParameterName",
"traits": {
"smithy.api#documentation": "<p>The name of the parameter.</p>"
}
},
"Type": {
"target": "com.amazonaws.ssm#ParameterType",
"traits": {
"smithy.api#documentation": "<p>The type of parameter used.</p>"
}
},
"KeyId": {
"target": "com.amazonaws.ssm#ParameterKeyId",
"traits": {
"smithy.api#documentation": "<p>The ID of the query key used for this parameter.</p>"
}
},
"LastModifiedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>Date the parameter was last changed or updated.</p>"
}
},
"LastModifiedUser": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>Amazon Resource Name (ARN) of the AWS user who last changed the parameter.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#ParameterDescription",
"traits": {
"smithy.api#documentation": "<p>Information about the parameter.</p>"
}
},
"Value": {
"target": "com.amazonaws.ssm#PSParameterValue",
"traits": {
"smithy.api#documentation": "<p>The parameter value.</p>"
}
},
"AllowedPattern": {
"target": "com.amazonaws.ssm#AllowedPattern",
"traits": {
"smithy.api#documentation": "<p>Parameter names can include the following letters and symbols.</p>\n <p>a-zA-Z0-9_.-</p>"
}
},
"Version": {
"target": "com.amazonaws.ssm#PSParameterVersion",
"traits": {
"smithy.api#documentation": "<p>The parameter version.</p>"
}
},
"Labels": {
"target": "com.amazonaws.ssm#ParameterLabelList",
"traits": {
"smithy.api#documentation": "<p>Labels assigned to the parameter version.</p>"
}
},
"Tier": {
"target": "com.amazonaws.ssm#ParameterTier",
"traits": {
"smithy.api#documentation": "<p>The parameter tier.</p>"
}
},
"Policies": {
"target": "com.amazonaws.ssm#ParameterPolicyList",
"traits": {
"smithy.api#documentation": "<p>Information about the policies assigned to a parameter.</p>\n <p>\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html\">Assigning parameter\n policies</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"DataType": {
"target": "com.amazonaws.ssm#ParameterDataType",
"traits": {
"smithy.api#documentation": "<p>The data type of the parameter, such as <code>text</code> or <code>aws:ec2:image</code>. The\n default is <code>text</code>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about parameter usage.</p>"
}
},
"com.amazonaws.ssm#ParameterHistoryList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ParameterHistory"
}
},
"com.amazonaws.ssm#ParameterInlinePolicy": {
"type": "structure",
"members": {
"PolicyText": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The JSON text of the policy.</p>"
}
},
"PolicyType": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The type of policy. Parameter Store supports the following policy types: Expiration,\n ExpirationNotification, and NoChangeNotification. </p>"
}
},
"PolicyStatus": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The status of the policy. Policies report the following statuses: Pending (the policy has\n not been enforced or applied yet), Finished (the policy was applied), Failed (the policy was not\n applied), or InProgress (the policy is being applied now). </p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>One or more policies assigned to a parameter.</p>"
}
},
"com.amazonaws.ssm#ParameterKeyId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
},
"smithy.api#pattern": "^([a-zA-Z0-9:/_-]+)$"
}
},
"com.amazonaws.ssm#ParameterLabel": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 100
}
}
},
"com.amazonaws.ssm#ParameterLabelList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ParameterLabel"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#ParameterLimitExceeded": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You have exceeded the number of parameters for this AWS account. Delete one or more\n parameters and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ParameterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Parameter"
}
},
"com.amazonaws.ssm#ParameterMaxVersionLimitExceeded": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Parameter Store retains the 100 most recently created versions of a parameter. After this\n number of versions has been created, Parameter Store deletes the oldest version when a new one is\n created. However, if the oldest version has a <i>label</i> attached to it,\n Parameter Store will not delete the version and instead presents this error message:</p>\n <p>\n <code>An error occurred (ParameterMaxVersionLimitExceeded) when calling the PutParameter\n operation: You attempted to create a new version of <i>parameter-name</i> by\n calling the PutParameter API with the overwrite flag. Version\n <i>version-number</i>, the oldest version, can't be deleted because it has a\n label associated with it. Move the label to another version of the parameter, and try\n again.</code>\n </p>\n <p>This safeguard is to prevent parameter versions with mission critical labels assigned to\n them from being deleted. To continue creating new parameters, first move the label from the\n oldest version of the parameter to a newer one for use in your operations. For information about\n moving parameter labels, see <a href=\"http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html#sysman-paramstore-labels-console-move\">Move a\n parameter label (console)</a> or <a href=\"http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html#sysman-paramstore-labels-cli-move\">Move a\n parameter label (CLI) </a> in the <i>AWS Systems Manager User Guide</i>. </p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ParameterMetadata": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#PSParameterName",
"traits": {
"smithy.api#documentation": "<p>The parameter name.</p>"
}
},
"Type": {
"target": "com.amazonaws.ssm#ParameterType",
"traits": {
"smithy.api#documentation": "<p>The type of parameter. Valid parameter types include the following: <code>String</code>,\n <code>StringList</code>, and <code>SecureString</code>.</p>"
}
},
"KeyId": {
"target": "com.amazonaws.ssm#ParameterKeyId",
"traits": {
"smithy.api#documentation": "<p>The ID of the query key used for this parameter.</p>"
}
},
"LastModifiedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>Date the parameter was last changed or updated.</p>"
}
},
"LastModifiedUser": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>Amazon Resource Name (ARN) of the AWS user who last changed the parameter.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#ParameterDescription",
"traits": {
"smithy.api#documentation": "<p>Description of the parameter actions.</p>"
}
},
"AllowedPattern": {
"target": "com.amazonaws.ssm#AllowedPattern",
"traits": {
"smithy.api#documentation": "<p>A parameter name can include only the following letters and symbols.</p>\n <p>a-zA-Z0-9_.-</p>"
}
},
"Version": {
"target": "com.amazonaws.ssm#PSParameterVersion",
"traits": {
"smithy.api#documentation": "<p>The parameter version.</p>"
}
},
"Tier": {
"target": "com.amazonaws.ssm#ParameterTier",
"traits": {
"smithy.api#documentation": "<p>The parameter tier.</p>"
}
},
"Policies": {
"target": "com.amazonaws.ssm#ParameterPolicyList",
"traits": {
"smithy.api#documentation": "<p>A list of policies associated with a parameter.</p>"
}
},
"DataType": {
"target": "com.amazonaws.ssm#ParameterDataType",
"traits": {
"smithy.api#documentation": "<p>The data type of the parameter, such as <code>text</code> or <code>aws:ec2:image</code>. The\n default is <code>text</code>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Metadata includes information like the ARN of the last user and the date/time the parameter\n was last used.</p>"
}
},
"com.amazonaws.ssm#ParameterMetadataList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ParameterMetadata"
}
},
"com.amazonaws.ssm#ParameterName": {
"type": "string"
},
"com.amazonaws.ssm#ParameterNameList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PSParameterName"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#ParameterNotFound": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The parameter could not be found. Verify the name and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ParameterPatternMismatchException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The parameter name is not valid.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The parameter name is not valid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ParameterPolicies": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 4096
}
}
},
"com.amazonaws.ssm#ParameterPolicyList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ParameterInlinePolicy"
}
},
"com.amazonaws.ssm#ParameterStringFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#ParameterStringFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>\n <note>\n <p>The <code>ParameterStringFilter</code> object is used by the <a>DescribeParameters</a> and <a>GetParametersByPath</a> API actions. However,\n not all of the pattern values listed for <code>Key</code> can be used with both actions.</p>\n <p>For <code>DescribeActions</code>, all of the listed patterns are valid, with the exception\n of <code>Label</code>.</p>\n <p>For <code>GetParametersByPath</code>, the following patterns listed for <code>Key</code>\n are not valid: <code>tag</code>, <code>Name</code>, <code>Path</code>, and\n <code>Tier</code>.</p>\n <p>For examples of CLI commands demonstrating valid parameter filter constructions, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-search.html\">Searching for\n Systems Manager parameters</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n </note>",
"smithy.api#required": {}
}
},
"Option": {
"target": "com.amazonaws.ssm#ParameterStringQueryOption",
"traits": {
"smithy.api#documentation": "<p>For all filters used with <a>DescribeParameters</a>, valid options include\n <code>Equals</code> and <code>BeginsWith</code>. The <code>Name</code> filter additionally\n supports the <code>Contains</code> option. (Exception: For filters using the key\n <code>Path</code>, valid options include <code>Recursive</code> and\n <code>OneLevel</code>.)</p>\n <p>For filters used with <a>GetParametersByPath</a>, valid options include\n <code>Equals</code> and <code>BeginsWith</code>. (Exception: For filters using\n <code>Label</code> as the Key name, the only valid option is <code>Equals</code>.)</p>"
}
},
"Values": {
"target": "com.amazonaws.ssm#ParameterStringFilterValueList",
"traits": {
"smithy.api#documentation": "<p>The value you want to search for.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>One or more filters. Use a filter to return a more specific list of results.</p>"
}
},
"com.amazonaws.ssm#ParameterStringFilterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 132
},
"smithy.api#pattern": "tag:.+|Name|Type|KeyId|Path|Label|Tier|DataType"
}
},
"com.amazonaws.ssm#ParameterStringFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ParameterStringFilter"
}
},
"com.amazonaws.ssm#ParameterStringFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.ssm#ParameterStringFilterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ParameterStringFilterValue"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#ParameterStringQueryOption": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#ParameterTier": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Standard",
"name": "STANDARD"
},
{
"value": "Advanced",
"name": "ADVANCED"
},
{
"value": "Intelligent-Tiering",
"name": "INTELLIGENT_TIERING"
}
]
}
},
"com.amazonaws.ssm#ParameterType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "String",
"name": "STRING"
},
{
"value": "StringList",
"name": "STRING_LIST"
},
{
"value": "SecureString",
"name": "SECURE_STRING"
}
]
}
},
"com.amazonaws.ssm#ParameterValue": {
"type": "string"
},
"com.amazonaws.ssm#ParameterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ParameterValue"
}
},
"com.amazonaws.ssm#ParameterVersionLabelLimitExceeded": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>A parameter version can have a maximum of ten labels.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ParameterVersionNotFound": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified parameter version was not found. Verify the parameter name and version, and\n try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#Parameters": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#ParameterName"
},
"value": {
"target": "com.amazonaws.ssm#ParameterValueList"
}
},
"com.amazonaws.ssm#ParametersFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#ParametersFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#ParametersFilterValueList",
"traits": {
"smithy.api#documentation": "<p>The filter values.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>This data type is deprecated. Instead, use <a>ParameterStringFilter</a>.</p>"
}
},
"com.amazonaws.ssm#ParametersFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Name",
"name": "NAME"
},
{
"value": "Type",
"name": "TYPE"
},
{
"value": "KeyId",
"name": "KEY_ID"
}
]
}
},
"com.amazonaws.ssm#ParametersFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ParametersFilter"
}
},
"com.amazonaws.ssm#ParametersFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.ssm#ParametersFilterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ParametersFilterValue"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#Patch": {
"type": "structure",
"members": {
"Id": {
"target": "com.amazonaws.ssm#PatchId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch. Applies to Windows patches only.</p>\n <note>\n <p>This ID is not the same as the Microsoft Knowledge Base ID.</p>\n </note>"
}
},
"ReleaseDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the patch was released.</p>"
}
},
"Title": {
"target": "com.amazonaws.ssm#PatchTitle",
"traits": {
"smithy.api#documentation": "<p>The title of the patch.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#PatchDescription",
"traits": {
"smithy.api#documentation": "<p>The description of the patch.</p>"
}
},
"ContentUrl": {
"target": "com.amazonaws.ssm#PatchContentUrl",
"traits": {
"smithy.api#documentation": "<p>The URL where more information can be obtained about the patch.</p>"
}
},
"Vendor": {
"target": "com.amazonaws.ssm#PatchVendor",
"traits": {
"smithy.api#documentation": "<p>The name of the vendor providing the patch.</p>"
}
},
"ProductFamily": {
"target": "com.amazonaws.ssm#PatchProductFamily",
"traits": {
"smithy.api#documentation": "<p>The product family the patch is applicable for. For example, <code>Windows</code> or\n <code>Amazon Linux 2</code>.</p>"
}
},
"Product": {
"target": "com.amazonaws.ssm#PatchProduct",
"traits": {
"smithy.api#documentation": "<p>The specific product the patch is applicable for. For example,\n <code>WindowsServer2016</code> or <code>AmazonLinux2018.03</code>.</p>"
}
},
"Classification": {
"target": "com.amazonaws.ssm#PatchClassification",
"traits": {
"smithy.api#documentation": "<p>The classification of the patch. For example, <code>SecurityUpdates</code>,\n <code>Updates</code>, or <code>CriticalUpdates</code>.</p>"
}
},
"MsrcSeverity": {
"target": "com.amazonaws.ssm#PatchMsrcSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity of the patch, such as <code>Critical</code>, <code>Important</code>, or\n <code>Moderate</code>. Applies to Windows patches only.</p>"
}
},
"KbNumber": {
"target": "com.amazonaws.ssm#PatchKbNumber",
"traits": {
"smithy.api#documentation": "<p>The Microsoft Knowledge Base ID of the patch. Applies to Windows patches only.</p>"
}
},
"MsrcNumber": {
"target": "com.amazonaws.ssm#PatchMsrcNumber",
"traits": {
"smithy.api#documentation": "<p>The ID of the Microsoft Security Response Center (MSRC) bulletin the patch is related to.\n For example, <code>MS14-045</code>. Applies to Windows patches only.</p>"
}
},
"Language": {
"target": "com.amazonaws.ssm#PatchLanguage",
"traits": {
"smithy.api#documentation": "<p>The language of the patch if it's language-specific.</p>"
}
},
"AdvisoryIds": {
"target": "com.amazonaws.ssm#PatchAdvisoryIdList",
"traits": {
"smithy.api#documentation": "<p>The Advisory ID of the patch. For example, <code>RHSA-2020:3779</code>. Applies to\n Linux-based instances only.</p>"
}
},
"BugzillaIds": {
"target": "com.amazonaws.ssm#PatchBugzillaIdList",
"traits": {
"smithy.api#documentation": "<p>The Bugzilla ID of the patch. For example, <code>1600646</code>. Applies to Linux-based\n instances only.</p>"
}
},
"CVEIds": {
"target": "com.amazonaws.ssm#PatchCVEIdList",
"traits": {
"smithy.api#documentation": "<p>The Common Vulnerabilities and Exposures (CVE) ID of the patch. For example,\n <code>CVE-2011-3192</code>. Applies to Linux-based instances only.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#PatchName",
"traits": {
"smithy.api#documentation": "<p>The name of the patch. Applies to Linux-based instances only.</p>"
}
},
"Epoch": {
"target": "com.amazonaws.ssm#PatchEpoch",
"traits": {
"smithy.api#documentation": "<p>The epoch of the patch. For example in\n <code>pkg-example-EE-20180914-2.2.amzn1.noarch</code>, the epoch value is\n <code>20180914-2</code>. Applies to Linux-based instances only.</p>"
}
},
"Version": {
"target": "com.amazonaws.ssm#PatchVersion",
"traits": {
"smithy.api#documentation": "<p>The version number of the patch. For example, in\n <code>example-pkg-1.710.10-2.7.abcd.x86_64</code>, the version number is indicated by\n <code>-1</code>. Applies to Linux-based instances only.</p>"
}
},
"Release": {
"target": "com.amazonaws.ssm#PatchRelease",
"traits": {
"smithy.api#documentation": "<p>The particular release of a patch. For example, in\n <code>pkg-example-EE-20180914-2.2.amzn1.noarch</code>, the release is <code>2.amaz1</code>.\n Applies to Linux-based instances only.</p>"
}
},
"Arch": {
"target": "com.amazonaws.ssm#PatchArch",
"traits": {
"smithy.api#documentation": "<p>The architecture of the patch. For example, in\n <code>example-pkg-0.710.10-2.7.abcd.x86_64</code>, the architecture is indicated by\n <code>x86_64</code>. Applies to Linux-based instances only.</p>"
}
},
"Severity": {
"target": "com.amazonaws.ssm#PatchSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity level of the patch. For example, <code>CRITICAL</code> or\n <code>MODERATE</code>.</p>"
}
},
"Repository": {
"target": "com.amazonaws.ssm#PatchRepository",
"traits": {
"smithy.api#documentation": "<p>The source patch repository for the operating system and version, such as\n <code>trusty-security</code> for Ubuntu Server 14.04 LTE and <code>focal-security</code> for\n Ubuntu Server 20.04 LTE. Applies to Linux-based instances only.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Represents metadata about a patch.</p>"
}
},
"com.amazonaws.ssm#PatchAction": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "ALLOW_AS_DEPENDENCY",
"name": "AllowAsDependency"
},
{
"value": "BLOCK",
"name": "Block"
}
]
}
},
"com.amazonaws.ssm#PatchAdvisoryId": {
"type": "string"
},
"com.amazonaws.ssm#PatchAdvisoryIdList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchAdvisoryId"
}
},
"com.amazonaws.ssm#PatchArch": {
"type": "string"
},
"com.amazonaws.ssm#PatchBaselineIdentity": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline.</p>"
}
},
"BaselineName": {
"target": "com.amazonaws.ssm#BaselineName",
"traits": {
"smithy.api#documentation": "<p>The name of the patch baseline.</p>"
}
},
"OperatingSystem": {
"target": "com.amazonaws.ssm#OperatingSystem",
"traits": {
"smithy.api#documentation": "<p>Defines the operating system the patch baseline applies to. The Default value is WINDOWS.\n </p>"
}
},
"BaselineDescription": {
"target": "com.amazonaws.ssm#BaselineDescription",
"traits": {
"smithy.api#documentation": "<p>The description of the patch baseline.</p>"
}
},
"DefaultBaseline": {
"target": "com.amazonaws.ssm#DefaultBaseline",
"traits": {
"smithy.api#documentation": "<p>Whether this is the default baseline. Note that Systems Manager supports creating multiple default\n patch baselines. For example, you can create a default patch baseline for each operating\n system.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Defines the basic information about a patch baseline.</p>"
}
},
"com.amazonaws.ssm#PatchBaselineIdentityList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchBaselineIdentity"
}
},
"com.amazonaws.ssm#PatchBaselineMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 100
}
}
},
"com.amazonaws.ssm#PatchBugzillaId": {
"type": "string"
},
"com.amazonaws.ssm#PatchBugzillaIdList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchBugzillaId"
}
},
"com.amazonaws.ssm#PatchCVEId": {
"type": "string"
},
"com.amazonaws.ssm#PatchCVEIdList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchCVEId"
}
},
"com.amazonaws.ssm#PatchCVEIds": {
"type": "string"
},
"com.amazonaws.ssm#PatchClassification": {
"type": "string"
},
"com.amazonaws.ssm#PatchComplianceData": {
"type": "structure",
"members": {
"Title": {
"target": "com.amazonaws.ssm#PatchTitle",
"traits": {
"smithy.api#documentation": "<p>The title of the patch.</p>",
"smithy.api#required": {}
}
},
"KBId": {
"target": "com.amazonaws.ssm#PatchKbNumber",
"traits": {
"smithy.api#documentation": "<p>The operating system-specific ID of the patch.</p>",
"smithy.api#required": {}
}
},
"Classification": {
"target": "com.amazonaws.ssm#PatchClassification",
"traits": {
"smithy.api#documentation": "<p>The classification of the patch (for example, SecurityUpdates, Updates,\n CriticalUpdates).</p>",
"smithy.api#required": {}
}
},
"Severity": {
"target": "com.amazonaws.ssm#PatchSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity of the patch (for example, Critical, Important, Moderate).</p>",
"smithy.api#required": {}
}
},
"State": {
"target": "com.amazonaws.ssm#PatchComplianceDataState",
"traits": {
"smithy.api#documentation": "<p>The state of the patch on the instance, such as INSTALLED or FAILED.</p>\n <p>For descriptions of each patch state, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-compliance-about.html#sysman-compliance-monitor-patch\">About patch compliance</a> in the <i>AWS Systems Manager User Guide</i>.</p>",
"smithy.api#required": {}
}
},
"InstalledTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date/time the patch was installed on the instance. Note that not all operating systems\n provide this level of information.</p>",
"smithy.api#required": {}
}
},
"CVEIds": {
"target": "com.amazonaws.ssm#PatchCVEIds",
"traits": {
"smithy.api#documentation": "<p>The IDs of one or more Common Vulnerabilities and Exposure (CVE) issues that are resolved by\n the patch.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the state of a patch on a particular instance as it relates to the patch\n baseline used to patch the instance.</p>"
}
},
"com.amazonaws.ssm#PatchComplianceDataList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchComplianceData"
}
},
"com.amazonaws.ssm#PatchComplianceDataState": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "INSTALLED",
"name": "Installed"
},
{
"value": "INSTALLED_OTHER",
"name": "InstalledOther"
},
{
"value": "INSTALLED_PENDING_REBOOT",
"name": "InstalledPendingReboot"
},
{
"value": "INSTALLED_REJECTED",
"name": "InstalledRejected"
},
{
"value": "MISSING",
"name": "Missing"
},
{
"value": "NOT_APPLICABLE",
"name": "NotApplicable"
},
{
"value": "FAILED",
"name": "Failed"
}
]
}
},
"com.amazonaws.ssm#PatchComplianceLevel": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "CRITICAL",
"name": "Critical"
},
{
"value": "HIGH",
"name": "High"
},
{
"value": "MEDIUM",
"name": "Medium"
},
{
"value": "LOW",
"name": "Low"
},
{
"value": "INFORMATIONAL",
"name": "Informational"
},
{
"value": "UNSPECIFIED",
"name": "Unspecified"
}
]
}
},
"com.amazonaws.ssm#PatchComplianceMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 10,
"max": 100
}
}
},
"com.amazonaws.ssm#PatchContentUrl": {
"type": "string"
},
"com.amazonaws.ssm#PatchCriticalNonCompliantCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchDeploymentStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "APPROVED",
"name": "Approved"
},
{
"value": "PENDING_APPROVAL",
"name": "PendingApproval"
},
{
"value": "EXPLICIT_APPROVED",
"name": "ExplicitApproved"
},
{
"value": "EXPLICIT_REJECTED",
"name": "ExplicitRejected"
}
]
}
},
"com.amazonaws.ssm#PatchDescription": {
"type": "string"
},
"com.amazonaws.ssm#PatchEpoch": {
"type": "integer"
},
"com.amazonaws.ssm#PatchFailedCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#PatchFilterKey",
"traits": {
"smithy.api#documentation": "<p>The key for the filter.</p>\n <p>Run the <a>DescribePatchProperties</a> command to view lists of valid keys for\n each operating system type.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#PatchFilterValueList",
"traits": {
"smithy.api#documentation": "<p>The value for the filter key.</p>\n <p>Run the <a>DescribePatchProperties</a> command to view lists of valid values for\n each key based on operating system type.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p> Defines which patches should be included in a patch baseline.</p>\n <p>A patch filter consists of a key and a set of values. The filter key is a patch property.\n For example, the available filter keys for WINDOWS are PATCH_SET, PRODUCT, PRODUCT_FAMILY,\n CLASSIFICATION, and MSRC_SEVERITY. The filter values define a matching criterion for the patch\n property indicated by the key. For example, if the filter key is PRODUCT and the filter values\n are [\"Office 2013\", \"Office 2016\"], then the filter accepts all patches where product name is\n either \"Office 2013\" or \"Office 2016\". The filter values can be exact values for the patch\n property given as a key, or a wildcard (*), which matches all values.</p>\n <p>You can view lists of valid values for the patch properties by running the\n <code>DescribePatchProperties</code> command. For information about which patch properties can\n be used with each major operating system, see <a>DescribePatchProperties</a>.</p>"
}
},
"com.amazonaws.ssm#PatchFilterGroup": {
"type": "structure",
"members": {
"PatchFilters": {
"target": "com.amazonaws.ssm#PatchFilterList",
"traits": {
"smithy.api#documentation": "<p>The set of patch filters that make up the group.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>A set of patch filters, typically used for approval rules.</p>"
}
},
"com.amazonaws.ssm#PatchFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "ARCH",
"name": "Arch"
},
{
"value": "ADVISORY_ID",
"name": "AdvisoryId"
},
{
"value": "BUGZILLA_ID",
"name": "BugzillaId"
},
{
"value": "PATCH_SET",
"name": "PatchSet"
},
{
"value": "PRODUCT",
"name": "Product"
},
{
"value": "PRODUCT_FAMILY",
"name": "ProductFamily"
},
{
"value": "CLASSIFICATION",
"name": "Classification"
},
{
"value": "CVE_ID",
"name": "CVEId"
},
{
"value": "EPOCH",
"name": "Epoch"
},
{
"value": "MSRC_SEVERITY",
"name": "MsrcSeverity"
},
{
"value": "NAME",
"name": "Name"
},
{
"value": "PATCH_ID",
"name": "PatchId"
},
{
"value": "SECTION",
"name": "Section"
},
{
"value": "PRIORITY",
"name": "Priority"
},
{
"value": "REPOSITORY",
"name": "Repository"
},
{
"value": "RELEASE",
"name": "Release"
},
{
"value": "SEVERITY",
"name": "Severity"
},
{
"value": "SECURITY",
"name": "Security"
},
{
"value": "VERSION",
"name": "Version"
}
]
}
},
"com.amazonaws.ssm#PatchFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchFilter"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 4
}
}
},
"com.amazonaws.ssm#PatchFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#PatchFilterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchFilterValue"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 20
}
}
},
"com.amazonaws.ssm#PatchGroup": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
},
"smithy.api#pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
}
},
"com.amazonaws.ssm#PatchGroupList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchGroup"
}
},
"com.amazonaws.ssm#PatchGroupPatchBaselineMapping": {
"type": "structure",
"members": {
"PatchGroup": {
"target": "com.amazonaws.ssm#PatchGroup",
"traits": {
"smithy.api#documentation": "<p>The name of the patch group registered with the patch baseline.</p>"
}
},
"BaselineIdentity": {
"target": "com.amazonaws.ssm#PatchBaselineIdentity",
"traits": {
"smithy.api#documentation": "<p>The patch baseline the patch group is registered with.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The mapping between a patch group and the patch baseline the patch group is registered\n with.</p>"
}
},
"com.amazonaws.ssm#PatchGroupPatchBaselineMappingList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchGroupPatchBaselineMapping"
}
},
"com.amazonaws.ssm#PatchId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 100
}
}
},
"com.amazonaws.ssm#PatchIdList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchId"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 50
}
}
},
"com.amazonaws.ssm#PatchInstalledCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchInstalledOtherCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchInstalledPendingRebootCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchInstalledRejectedCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchKbNumber": {
"type": "string"
},
"com.amazonaws.ssm#PatchLanguage": {
"type": "string"
},
"com.amazonaws.ssm#PatchList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Patch"
}
},
"com.amazonaws.ssm#PatchMissingCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchMsrcNumber": {
"type": "string"
},
"com.amazonaws.ssm#PatchMsrcSeverity": {
"type": "string"
},
"com.amazonaws.ssm#PatchName": {
"type": "string"
},
"com.amazonaws.ssm#PatchNotApplicableCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchOperationType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Scan",
"name": "SCAN"
},
{
"value": "Install",
"name": "INSTALL"
}
]
}
},
"com.amazonaws.ssm#PatchOrchestratorFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#PatchOrchestratorFilterKey",
"traits": {
"smithy.api#documentation": "<p>The key for the filter.</p>"
}
},
"Values": {
"target": "com.amazonaws.ssm#PatchOrchestratorFilterValues",
"traits": {
"smithy.api#documentation": "<p>The value for the filter.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Defines a filter used in Patch Manager APIs.</p>"
}
},
"com.amazonaws.ssm#PatchOrchestratorFilterKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
}
}
},
"com.amazonaws.ssm#PatchOrchestratorFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchOrchestratorFilter"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 5
}
}
},
"com.amazonaws.ssm#PatchOrchestratorFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
}
}
},
"com.amazonaws.ssm#PatchOrchestratorFilterValues": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchOrchestratorFilterValue"
}
},
"com.amazonaws.ssm#PatchOtherNonCompliantCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchProduct": {
"type": "string"
},
"com.amazonaws.ssm#PatchProductFamily": {
"type": "string"
},
"com.amazonaws.ssm#PatchPropertiesList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchPropertyEntry"
}
},
"com.amazonaws.ssm#PatchProperty": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "PRODUCT",
"name": "Product"
},
{
"value": "PRODUCT_FAMILY",
"name": "PatchProductFamily"
},
{
"value": "CLASSIFICATION",
"name": "PatchClassification"
},
{
"value": "MSRC_SEVERITY",
"name": "PatchMsrcSeverity"
},
{
"value": "PRIORITY",
"name": "PatchPriority"
},
{
"value": "SEVERITY",
"name": "PatchSeverity"
}
]
}
},
"com.amazonaws.ssm#PatchPropertyEntry": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#AttributeName"
},
"value": {
"target": "com.amazonaws.ssm#AttributeValue"
}
},
"com.amazonaws.ssm#PatchRelease": {
"type": "string"
},
"com.amazonaws.ssm#PatchRepository": {
"type": "string"
},
"com.amazonaws.ssm#PatchRule": {
"type": "structure",
"members": {
"PatchFilterGroup": {
"target": "com.amazonaws.ssm#PatchFilterGroup",
"traits": {
"smithy.api#documentation": "<p>The patch filter group that defines the criteria for the rule.</p>",
"smithy.api#required": {}
}
},
"ComplianceLevel": {
"target": "com.amazonaws.ssm#PatchComplianceLevel",
"traits": {
"smithy.api#documentation": "<p>A compliance severity level for all approved patches in a patch baseline.</p>"
}
},
"ApproveAfterDays": {
"target": "com.amazonaws.ssm#ApproveAfterDays",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of days after the release date of each patch matched by the rule that the patch\n is marked as approved in the patch baseline. For example, a value of <code>7</code> means that\n patches are approved seven days after they are released. Not supported on Debian Server or Ubuntu\n Server.</p>"
}
},
"ApproveUntilDate": {
"target": "com.amazonaws.ssm#PatchStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The cutoff date for auto approval of released patches. Any patches released on or before\n this date are installed automatically. Not supported on Debian Server or Ubuntu Server.</p>\n <p>Enter dates in the format <code>YYYY-MM-DD</code>. For example,\n <code>2020-12-31</code>.</p>"
}
},
"EnableNonSecurity": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>For instances identified by the approval rule filters, enables a patch baseline to apply\n non-security updates available in the specified repository. The default value is 'false'. Applies\n to Linux instances only.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Defines an approval rule for a patch baseline.</p>"
}
},
"com.amazonaws.ssm#PatchRuleGroup": {
"type": "structure",
"members": {
"PatchRules": {
"target": "com.amazonaws.ssm#PatchRuleList",
"traits": {
"smithy.api#documentation": "<p>The rules that make up the rule group.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>A set of rules defining the approval rules for a patch baseline.</p>"
}
},
"com.amazonaws.ssm#PatchRuleList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchRule"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 10
}
}
},
"com.amazonaws.ssm#PatchSecurityNonCompliantCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchSet": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "OS",
"name": "Os"
},
{
"value": "APPLICATION",
"name": "Application"
}
]
}
},
"com.amazonaws.ssm#PatchSeverity": {
"type": "string"
},
"com.amazonaws.ssm#PatchSource": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#PatchSourceName",
"traits": {
"smithy.api#documentation": "<p>The name specified to identify the patch source.</p>",
"smithy.api#required": {}
}
},
"Products": {
"target": "com.amazonaws.ssm#PatchSourceProductList",
"traits": {
"smithy.api#documentation": "<p>The specific operating system versions a patch repository applies to, such as \"Ubuntu16.04\",\n \"AmazonLinux2016.09\", \"RedhatEnterpriseLinux7.2\" or \"Suse12.7\". For lists of supported product\n values, see <a>PatchFilter</a>.</p>",
"smithy.api#required": {}
}
},
"Configuration": {
"target": "com.amazonaws.ssm#PatchSourceConfiguration",
"traits": {
"smithy.api#documentation": "<p>The value of the yum repo configuration. For example:</p>\n <p>\n <code>[main]</code>\n </p>\n <p>\n <code>name=MyCustomRepository</code>\n </p>\n <p>\n <code>baseurl=https://my-custom-repository</code>\n </p>\n <p>\n <code>enabled=1</code>\n </p>\n <note>\n <p>For information about other options available for your yum repository configuration, see\n <a href=\"https://man7.org/linux/man-pages/man5/dnf.conf.5.html\">dnf.conf(5)</a>.</p>\n </note>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the patches to use to update the instances, including target operating\n systems and source repository. Applies to Linux instances only.</p>"
}
},
"com.amazonaws.ssm#PatchSourceConfiguration": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
},
"smithy.api#sensitive": {}
}
},
"com.amazonaws.ssm#PatchSourceList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchSource"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 20
}
}
},
"com.amazonaws.ssm#PatchSourceName": {
"type": "string",
"traits": {
"smithy.api#pattern": "^[a-zA-Z0-9_\\-.]{3,50}$"
}
},
"com.amazonaws.ssm#PatchSourceProduct": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
}
}
},
"com.amazonaws.ssm#PatchSourceProductList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PatchSourceProduct"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 20
}
}
},
"com.amazonaws.ssm#PatchStatus": {
"type": "structure",
"members": {
"DeploymentStatus": {
"target": "com.amazonaws.ssm#PatchDeploymentStatus",
"traits": {
"smithy.api#documentation": "<p>The approval status of a patch (APPROVED, PENDING_APPROVAL, EXPLICIT_APPROVED,\n EXPLICIT_REJECTED).</p>"
}
},
"ComplianceLevel": {
"target": "com.amazonaws.ssm#PatchComplianceLevel",
"traits": {
"smithy.api#documentation": "<p>The compliance severity level for a patch.</p>"
}
},
"ApprovalDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date the patch was approved (or will be approved if the status is\n PENDING_APPROVAL).</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the approval status of a patch.</p>"
}
},
"com.amazonaws.ssm#PatchStringDateTime": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#PatchTitle": {
"type": "string"
},
"com.amazonaws.ssm#PatchUnreportedNotApplicableCount": {
"type": "integer"
},
"com.amazonaws.ssm#PatchVendor": {
"type": "string"
},
"com.amazonaws.ssm#PatchVersion": {
"type": "string"
},
"com.amazonaws.ssm#PingStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Online",
"name": "ONLINE"
},
{
"value": "ConnectionLost",
"name": "CONNECTION_LOST"
},
{
"value": "Inactive",
"name": "INACTIVE"
}
]
}
},
"com.amazonaws.ssm#PlatformType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Windows",
"name": "WINDOWS"
},
{
"value": "Linux",
"name": "LINUX"
}
]
}
},
"com.amazonaws.ssm#PlatformTypeList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#PlatformType",
"traits": {
"smithy.api#xmlName": "PlatformType"
}
}
},
"com.amazonaws.ssm#PoliciesLimitExceededException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You specified more than the maximum number of allowed policies for the parameter. The\n maximum is 10.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#Product": {
"type": "string"
},
"com.amazonaws.ssm#ProgressCounters": {
"type": "structure",
"members": {
"TotalSteps": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The total number of steps run in all specified AWS Regions and accounts for the current\n Automation execution.</p>"
}
},
"SuccessSteps": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The total number of steps that successfully completed in all specified AWS Regions and\n accounts for the current Automation execution.</p>"
}
},
"FailedSteps": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The total number of steps that failed to run in all specified AWS Regions and accounts for\n the current Automation execution.</p>"
}
},
"CancelledSteps": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The total number of steps that the system cancelled in all specified AWS Regions and\n accounts for the current Automation execution.</p>"
}
},
"TimedOutSteps": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#documentation": "<p>The total number of steps that timed out in all specified AWS Regions and accounts for the\n current Automation execution.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An aggregate of step execution statuses displayed in the AWS Console for a multi-Region and\n multi-account Automation execution.</p>"
}
},
"com.amazonaws.ssm#PutComplianceItems": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#PutComplianceItemsRequest"
},
"output": {
"target": "com.amazonaws.ssm#PutComplianceItemsResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#ComplianceTypeCountLimitExceededException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidItemContentException"
},
{
"target": "com.amazonaws.ssm#InvalidResourceId"
},
{
"target": "com.amazonaws.ssm#InvalidResourceType"
},
{
"target": "com.amazonaws.ssm#ItemSizeLimitExceededException"
},
{
"target": "com.amazonaws.ssm#TotalSizeLimitExceededException"
}
],
"traits": {
"smithy.api#documentation": "<p>Registers a compliance type and other compliance details on a designated resource. This\n action lets you register custom compliance details with a resource. This call overwrites existing\n compliance information on the resource, so you must provide a full list of compliance items each\n time that you send the request.</p>\n <p>ComplianceType can be one of the following:</p>\n <ul>\n <li>\n <p>ExecutionId: The execution ID when the patch, association, or custom compliance item was\n applied.</p>\n </li>\n <li>\n <p>ExecutionType: Specify patch, association, or Custom:<code>string</code>.</p>\n </li>\n <li>\n <p>ExecutionTime. The time the patch, association, or custom compliance item was applied to\n the instance.</p>\n </li>\n <li>\n <p>Id: The patch, association, or custom compliance ID.</p>\n </li>\n <li>\n <p>Title: A title.</p>\n </li>\n <li>\n <p>Status: The status of the compliance item. For example, <code>approved</code> for patches,\n or <code>Failed</code> for associations.</p>\n </li>\n <li>\n <p>Severity: A patch severity. For example, <code>critical</code>.</p>\n </li>\n <li>\n <p>DocumentName: A SSM document name. For example, AWS-RunPatchBaseline.</p>\n </li>\n <li>\n <p>DocumentVersion: An SSM document version number. For example, 4.</p>\n </li>\n <li>\n <p>Classification: A patch classification. For example, <code>security updates</code>.</p>\n </li>\n <li>\n <p>PatchBaselineId: A patch baseline ID.</p>\n </li>\n <li>\n <p>PatchSeverity: A patch severity. For example, <code>Critical</code>.</p>\n </li>\n <li>\n <p>PatchState: A patch state. For example, <code>InstancesWithFailedPatches</code>.</p>\n </li>\n <li>\n <p>PatchGroup: The name of a patch group.</p>\n </li>\n <li>\n <p>InstalledTime: The time the association, patch, or custom compliance item was applied to\n the resource. Specify the time by using the following format: yyyy-MM-dd'T'HH:mm:ss'Z'</p>\n </li>\n </ul>"
}
},
"com.amazonaws.ssm#PutComplianceItemsRequest": {
"type": "structure",
"members": {
"ResourceId": {
"target": "com.amazonaws.ssm#ComplianceResourceId",
"traits": {
"smithy.api#documentation": "<p>Specify an ID for this resource. For a managed instance, this is the instance ID.</p>",
"smithy.api#required": {}
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#ComplianceResourceType",
"traits": {
"smithy.api#documentation": "<p>Specify the type of resource. <code>ManagedInstance</code> is currently the only supported\n resource type.</p>",
"smithy.api#required": {}
}
},
"ComplianceType": {
"target": "com.amazonaws.ssm#ComplianceTypeName",
"traits": {
"smithy.api#documentation": "<p>Specify the compliance type. For example, specify Association (for a State Manager\n association), Patch, or Custom:<code>string</code>.</p>",
"smithy.api#required": {}
}
},
"ExecutionSummary": {
"target": "com.amazonaws.ssm#ComplianceExecutionSummary",
"traits": {
"smithy.api#documentation": "<p>A summary of the call execution that includes an execution ID, the type of execution (for\n example, <code>Command</code>), and the date/time of the execution using a datetime object that\n is saved in the following format: yyyy-MM-dd'T'HH:mm:ss'Z'.</p>",
"smithy.api#required": {}
}
},
"Items": {
"target": "com.amazonaws.ssm#ComplianceItemEntryList",
"traits": {
"smithy.api#documentation": "<p>Information about the compliance as defined by the resource type. For example, for a patch\n compliance type, <code>Items</code> includes information about the PatchSeverity, Classification,\n and so on.</p>",
"smithy.api#required": {}
}
},
"ItemContentHash": {
"target": "com.amazonaws.ssm#ComplianceItemContentHash",
"traits": {
"smithy.api#documentation": "<p>MD5 or SHA-256 content hash. The content hash is used to determine if existing information\n should be overwritten or ignored. If the content hashes match, the request to put compliance\n information is ignored.</p>"
}
},
"UploadType": {
"target": "com.amazonaws.ssm#ComplianceUploadType",
"traits": {
"smithy.api#documentation": "<p>The mode for uploading compliance items. You can specify <code>COMPLETE</code> or\n <code>PARTIAL</code>. In <code>COMPLETE</code> mode, the system overwrites all existing\n compliance information for the resource. You must provide a full list of compliance items each\n time you send the request.</p>\n <p>In <code>PARTIAL</code> mode, the system overwrites compliance information for a specific\n association. The association must be configured with <code>SyncCompliance</code> set to\n <code>MANUAL</code>. By default, all requests use <code>COMPLETE</code> mode.</p>\n <note>\n <p>This attribute is only valid for association compliance.</p>\n </note>"
}
}
}
},
"com.amazonaws.ssm#PutComplianceItemsResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#PutInventory": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#PutInventoryRequest"
},
"output": {
"target": "com.amazonaws.ssm#PutInventoryResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#CustomSchemaCountLimitExceededException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidInventoryItemContextException"
},
{
"target": "com.amazonaws.ssm#InvalidItemContentException"
},
{
"target": "com.amazonaws.ssm#InvalidTypeNameException"
},
{
"target": "com.amazonaws.ssm#ItemContentMismatchException"
},
{
"target": "com.amazonaws.ssm#ItemSizeLimitExceededException"
},
{
"target": "com.amazonaws.ssm#SubTypeCountLimitExceededException"
},
{
"target": "com.amazonaws.ssm#TotalSizeLimitExceededException"
},
{
"target": "com.amazonaws.ssm#UnsupportedInventoryItemContextException"
},
{
"target": "com.amazonaws.ssm#UnsupportedInventorySchemaVersionException"
}
],
"traits": {
"smithy.api#documentation": "<p>Bulk update custom inventory items on one more instance. The request adds an inventory item,\n if it doesn't already exist, or updates an inventory item, if it does exist.</p>"
}
},
"com.amazonaws.ssm#PutInventoryMessage": {
"type": "string"
},
"com.amazonaws.ssm#PutInventoryRequest": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>An instance ID where you want to add or update inventory items.</p>",
"smithy.api#required": {}
}
},
"Items": {
"target": "com.amazonaws.ssm#InventoryItemList",
"traits": {
"smithy.api#documentation": "<p>The inventory items that you want to add or update on instances.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#PutInventoryResult": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#PutInventoryMessage",
"traits": {
"smithy.api#documentation": "<p>Information about the request.</p>"
}
}
}
},
"com.amazonaws.ssm#PutParameter": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#PutParameterRequest"
},
"output": {
"target": "com.amazonaws.ssm#PutParameterResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#HierarchyLevelLimitExceededException"
},
{
"target": "com.amazonaws.ssm#HierarchyTypeMismatchException"
},
{
"target": "com.amazonaws.ssm#IncompatiblePolicyException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidAllowedPatternException"
},
{
"target": "com.amazonaws.ssm#InvalidKeyId"
},
{
"target": "com.amazonaws.ssm#InvalidPolicyAttributeException"
},
{
"target": "com.amazonaws.ssm#InvalidPolicyTypeException"
},
{
"target": "com.amazonaws.ssm#ParameterAlreadyExists"
},
{
"target": "com.amazonaws.ssm#ParameterLimitExceeded"
},
{
"target": "com.amazonaws.ssm#ParameterMaxVersionLimitExceeded"
},
{
"target": "com.amazonaws.ssm#ParameterPatternMismatchException"
},
{
"target": "com.amazonaws.ssm#PoliciesLimitExceededException"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
},
{
"target": "com.amazonaws.ssm#UnsupportedParameterType"
}
],
"traits": {
"smithy.api#documentation": "<p>Add a parameter to the system.</p>"
}
},
"com.amazonaws.ssm#PutParameterRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#PSParameterName",
"traits": {
"smithy.api#documentation": "<p>The fully qualified name of the parameter that you want to add to the system. The fully\n qualified name includes the complete hierarchy of the parameter path and name. For parameters in\n a hierarchy, you must include a leading forward slash character (/) when you create or reference\n a parameter. For example: <code>/Dev/DBServer/MySQL/db-string13</code>\n </p>\n <p>Naming Constraints:</p>\n <ul>\n <li>\n <p>Parameter names are case sensitive.</p>\n </li>\n <li>\n <p>A parameter name must be unique within an AWS Region</p>\n </li>\n <li>\n <p>A parameter name can't be prefixed with \"aws\" or \"ssm\" (case-insensitive).</p>\n </li>\n <li>\n <p>Parameter names can include only the following symbols and letters:\n <code>a-zA-Z0-9_.-</code>\n </p>\n <p>In addition, the slash character ( / ) is used to delineate hierarchies in parameter\n names. For example: <code>/Dev/Production/East/Project-ABC/MyParameter</code>\n </p>\n </li>\n <li>\n <p>A parameter name can't include spaces.</p>\n </li>\n <li>\n <p>Parameter hierarchies are limited to a maximum depth of fifteen levels.</p>\n </li>\n </ul>\n <p>For additional information about valid values for parameter names, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html\">Creating Systems Manager parameters</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n <note>\n <p>The maximum length constraint listed below includes capacity for additional system\n attributes that are not part of the name. The maximum length for a parameter name, including the\n full length of the parameter ARN, is 1011 characters. For example, the length of the following\n parameter name is 65 characters, not 20 characters:</p>\n <p>\n <code>arn:aws:ssm:us-east-2:111122223333:parameter/ExampleParameterName</code>\n </p>\n </note>",
"smithy.api#required": {}
}
},
"Description": {
"target": "com.amazonaws.ssm#ParameterDescription",
"traits": {
"smithy.api#documentation": "<p>Information about the parameter that you want to add to the system. Optional but\n recommended.</p>\n <important>\n <p>Do not enter personally identifiable information in this field.</p>\n </important>"
}
},
"Value": {
"target": "com.amazonaws.ssm#PSParameterValue",
"traits": {
"smithy.api#documentation": "<p>The parameter value that you want to add to the system. Standard parameters have a value\n limit of 4 KB. Advanced parameters have a value limit of 8 KB.</p>\n <note>\n <p>Parameters can't be referenced or nested in the values of other parameters. You can't\n include <code>{{}}</code> or <code>{{ssm:<i>parameter-name</i>}}</code> in a\n parameter value.</p>\n </note>",
"smithy.api#required": {}
}
},
"Type": {
"target": "com.amazonaws.ssm#ParameterType",
"traits": {
"smithy.api#documentation": "<p>The type of parameter that you want to add to the system.</p>\n <note>\n <p>\n <code>SecureString</code> is not currently supported for AWS CloudFormation\n templates.</p>\n </note>\n <p>Items in a <code>StringList</code> must be separated by a comma (,). You can't\n use other punctuation or special character to escape items in the list. If you have a parameter\n value that requires a comma, then use the <code>String</code> data type.</p>\n <important>\n <p>Specifying a parameter type is not required when updating a parameter. You must specify a\n parameter type when creating a parameter.</p>\n </important>"
}
},
"KeyId": {
"target": "com.amazonaws.ssm#ParameterKeyId",
"traits": {
"smithy.api#documentation": "<p>The KMS Key ID that you want to use to encrypt a parameter. Either the default AWS Key\n Management Service (AWS KMS) key automatically assigned to your AWS account or a custom key.\n Required for parameters that use the <code>SecureString</code> data type.</p>\n <p>If you don't specify a key ID, the system uses the default key associated with your AWS\n account.</p>\n <ul>\n <li>\n <p>To use your default AWS KMS key, choose the <code>SecureString</code> data\n type, and do <i>not</i> specify the <code>Key ID</code> when you\n create the parameter. The system automatically populates <code>Key ID</code> with\n your default KMS key.</p>\n </li>\n <li>\n <p>To use a custom KMS key, choose the <code>SecureString</code> data type with\n the <code>Key ID</code> parameter.</p>\n </li>\n </ul>"
}
},
"Overwrite": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Overwrite an existing parameter. The default value is 'false'.</p>"
}
},
"AllowedPattern": {
"target": "com.amazonaws.ssm#AllowedPattern",
"traits": {
"smithy.api#documentation": "<p>A regular expression used to validate the parameter value. For example, for String types\n with values restricted to numbers, you can specify the following: AllowedPattern=^\\d+$ </p>"
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>Optional metadata that you assign to a resource. Tags enable you to categorize a resource in\n different ways, such as by purpose, owner, or environment. For example, you might want to tag a\n Systems Manager parameter to identify the type of resource to which it applies, the environment, or the\n type of configuration data referenced by the parameter. In this case, you could specify the\n following key name/value pairs:</p>\n <ul>\n <li>\n <p>\n <code>Key=Resource,Value=S3bucket</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=OS,Value=Windows</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=ParameterType,Value=LicenseKey</code>\n </p>\n </li>\n </ul>\n <note>\n <p>To add tags to an existing Systems Manager parameter, use the <a>AddTagsToResource</a>\n action.</p>\n </note>"
}
},
"Tier": {
"target": "com.amazonaws.ssm#ParameterTier",
"traits": {
"smithy.api#documentation": "<p>The parameter tier to assign to a parameter.</p>\n <p>Parameter Store offers a standard tier and an advanced tier for parameters. Standard\n parameters have a content size limit of 4 KB and can't be configured to use parameter policies.\n You can create a maximum of 10,000 standard parameters for each Region in an AWS account.\n Standard parameters are offered at no additional cost. </p>\n <p>Advanced parameters have a content size limit of 8 KB and can be configured to use parameter\n policies. You can create a maximum of 100,000 advanced parameters for each Region in an AWS\n account. Advanced parameters incur a charge. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-advanced-parameters.html\">Standard and\n advanced parameter tiers</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n <p>You can change a standard parameter to an advanced parameter any time. But you can't revert\n an advanced parameter to a standard parameter. Reverting an advanced parameter to a standard\n parameter would result in data loss because the system would truncate the size of the parameter\n from 8 KB to 4 KB. Reverting would also remove any policies attached to the parameter. Lastly,\n advanced parameters use a different form of encryption than standard parameters. </p>\n <p>If you no longer need an advanced parameter, or if you no longer want to incur charges for\n an advanced parameter, you must delete it and recreate it as a new standard parameter. </p>\n <p>\n <b>Using the Default Tier Configuration</b>\n </p>\n <p>In <code>PutParameter</code> requests, you can specify the tier to create the parameter in.\n Whenever you specify a tier in the request, Parameter Store creates or updates the parameter\n according to that request. However, if you do not specify a tier in a request, Parameter Store\n assigns the tier based on the current Parameter Store default tier configuration.</p>\n <p>The default tier when you begin using Parameter Store is the standard-parameter tier. If you\n use the advanced-parameter tier, you can specify one of the following as the default:</p>\n <ul>\n <li>\n <p>\n <b>Advanced</b>: With this option, Parameter Store evaluates all\n requests as advanced parameters. </p>\n </li>\n <li>\n <p>\n <b>Intelligent-Tiering</b>: With this option, Parameter Store\n evaluates each request to determine if the parameter is standard or advanced. </p>\n <p>If the request doesn't include any options that require an advanced parameter, the\n parameter is created in the standard-parameter tier. If one or more options requiring an\n advanced parameter are included in the request, Parameter Store create a parameter in the\n advanced-parameter tier.</p>\n <p>This approach helps control your parameter-related costs by always creating standard\n parameters unless an advanced parameter is necessary. </p>\n </li>\n </ul>\n <p>Options that require an advanced parameter include the following:</p>\n <ul>\n <li>\n <p>The content size of the parameter is more than 4 KB.</p>\n </li>\n <li>\n <p>The parameter uses a parameter policy.</p>\n </li>\n <li>\n <p>More than 10,000 parameters already exist in your AWS account in the current\n Region.</p>\n </li>\n </ul>\n <p>For more information about configuring the default tier option, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/ps-default-tier.html\">Specifying a\n default parameter tier</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"Policies": {
"target": "com.amazonaws.ssm#ParameterPolicies",
"traits": {
"smithy.api#documentation": "<p>One or more policies to apply to a parameter. This action takes a JSON array. Parameter\n Store supports the following policy types:</p>\n <p>Expiration: This policy deletes the parameter after it expires. When you create the policy,\n you specify the expiration date. You can update the expiration date and time by updating the\n policy. Updating the <i>parameter</i> does not affect the expiration date and time.\n When the expiration time is reached, Parameter Store deletes the parameter.</p>\n <p>ExpirationNotification: This policy triggers an event in Amazon CloudWatch Events that\n notifies you about the expiration. By using this policy, you can receive notification before or\n after the expiration time is reached, in units of days or hours.</p>\n <p>NoChangeNotification: This policy triggers a CloudWatch event if a parameter has not been\n modified for a specified period of time. This policy type is useful when, for example, a secret\n needs to be changed within a period of time, but it has not been changed.</p>\n <p>All existing policies are preserved until you send new policies or an empty policy. For more\n information about parameter policies, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html\">Assigning parameter\n policies</a>. </p>"
}
},
"DataType": {
"target": "com.amazonaws.ssm#ParameterDataType",
"traits": {
"smithy.api#documentation": "<p>The data type for a <code>String</code> parameter. Supported data types include plain text\n and Amazon Machine Image IDs.</p>\n <p>\n <b>The following data type values are supported.</b>\n </p>\n <ul>\n <li>\n <p>\n <code>text</code>\n </p>\n </li>\n <li>\n <p>\n <code>aws:ec2:image</code>\n </p>\n </li>\n </ul>\n <p>When you create a <code>String</code> parameter and specify <code>aws:ec2:image</code>,\n Systems Manager validates the parameter value is in the required format, such as\n <code>ami-12345abcdeEXAMPLE</code>, and that the specified AMI is available in your AWS account.\n For more information, see <a href=\"http://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-ec2-aliases.html\">Native\n parameter support for Amazon Machine Image IDs</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>"
}
}
}
},
"com.amazonaws.ssm#PutParameterResult": {
"type": "structure",
"members": {
"Version": {
"target": "com.amazonaws.ssm#PSParameterVersion",
"traits": {
"smithy.api#documentation": "<p>The new version number of a parameter. If you edit a parameter value, Parameter Store\n automatically creates a new version and assigns this new version a unique ID. You can reference a\n parameter version ID in API actions or in Systems Manager documents (SSM documents). By default, if you\n don't specify a specific version, the system returns the latest parameter value when a parameter\n is called.</p>"
}
},
"Tier": {
"target": "com.amazonaws.ssm#ParameterTier",
"traits": {
"smithy.api#documentation": "<p>The tier assigned to the parameter.</p>"
}
}
}
},
"com.amazonaws.ssm#RebootOption": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "RebootIfNeeded",
"name": "REBOOT_IF_NEEDED"
},
{
"value": "NoReboot",
"name": "NO_REBOOT"
}
]
}
},
"com.amazonaws.ssm#Region": {
"type": "string"
},
"com.amazonaws.ssm#Regions": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Region"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#RegisterDefaultPatchBaseline": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#RegisterDefaultPatchBaselineRequest"
},
"output": {
"target": "com.amazonaws.ssm#RegisterDefaultPatchBaselineResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidResourceId"
}
],
"traits": {
"smithy.api#documentation": "<p>Defines the default patch baseline for the relevant operating system.</p>\n <p>To reset the AWS predefined patch baseline as the default, specify the full patch baseline\n ARN as the baseline ID value. For example, for CentOS, specify\n <code>arn:aws:ssm:us-east-2:733109147000:patchbaseline/pb-0574b43a65ea646ed</code> instead of\n <code>pb-0574b43a65ea646ed</code>.</p>"
}
},
"com.amazonaws.ssm#RegisterDefaultPatchBaselineRequest": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline that should be the default patch baseline.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#RegisterDefaultPatchBaselineResult": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the default patch baseline.</p>"
}
}
}
},
"com.amazonaws.ssm#RegisterPatchBaselineForPatchGroup": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#RegisterPatchBaselineForPatchGroupRequest"
},
"output": {
"target": "com.amazonaws.ssm#RegisterPatchBaselineForPatchGroupResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AlreadyExistsException"
},
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidResourceId"
},
{
"target": "com.amazonaws.ssm#ResourceLimitExceededException"
}
],
"traits": {
"smithy.api#documentation": "<p>Registers a patch baseline for a patch group.</p>"
}
},
"com.amazonaws.ssm#RegisterPatchBaselineForPatchGroupRequest": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline to register the patch group with.</p>",
"smithy.api#required": {}
}
},
"PatchGroup": {
"target": "com.amazonaws.ssm#PatchGroup",
"traits": {
"smithy.api#documentation": "<p>The name of the patch group that should be registered with the patch baseline.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#RegisterPatchBaselineForPatchGroupResult": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline the patch group was registered with.</p>"
}
},
"PatchGroup": {
"target": "com.amazonaws.ssm#PatchGroup",
"traits": {
"smithy.api#documentation": "<p>The name of the patch group registered with the patch baseline.</p>"
}
}
}
},
"com.amazonaws.ssm#RegisterTargetWithMaintenanceWindow": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#RegisterTargetWithMaintenanceWindowRequest"
},
"output": {
"target": "com.amazonaws.ssm#RegisterTargetWithMaintenanceWindowResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#IdempotentParameterMismatch"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ResourceLimitExceededException"
}
],
"traits": {
"smithy.api#documentation": "<p>Registers a target with a maintenance window.</p>"
}
},
"com.amazonaws.ssm#RegisterTargetWithMaintenanceWindowRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window the target should be registered with.</p>",
"smithy.api#required": {}
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#MaintenanceWindowResourceType",
"traits": {
"smithy.api#documentation": "<p>The type of target being registered with the maintenance window.</p>",
"smithy.api#required": {}
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets to register with the maintenance window. In other words, the instances to run\n commands on when the maintenance window runs.</p>\n <note>\n <p>If a single maintenance window task is registered with multiple targets, its task\n invocations occur sequentially and not in parallel. If your task must run on multiple targets at\n the same time, register a task for each target individually and assign each task the same\n priority level.</p>\n </note>\n <p>You can specify targets using instance IDs, resource group names, or tags that have been\n applied to instances.</p>\n <p>\n <b>Example 1</b>: Specify instance IDs</p>\n <p>\n <code>Key=InstanceIds,Values=<i>instance-id-1</i>,<i>instance-id-2</i>,<i>instance-id-3</i>\n </code>\n </p>\n <p>\n <b>Example 2</b>: Use tag key-pairs applied to instances</p>\n <p>\n <code>Key=tag:<i>my-tag-key</i>,Values=<i>my-tag-value-1</i>,<i>my-tag-value-2</i>\n </code>\n </p>\n <p>\n <b>Example 3</b>: Use tag-keys applied to instances</p>\n <p>\n <code>Key=tag-key,Values=<i>my-tag-key-1</i>,<i>my-tag-key-2</i>\n </code>\n </p>\n \n <p>\n <b>Example 4</b>: Use resource group names</p>\n <p>\n <code>Key=resource-groups:Name,Values=<i>resource-group-name</i>\n </code>\n </p>\n <p>\n <b>Example 5</b>: Use filters for resource group types</p>\n <p>\n <code>Key=resource-groups:ResourceTypeFilters,Values=<i>resource-type-1</i>,<i>resource-type-2</i>\n </code>\n </p>\n <note>\n <p>For <code>Key=resource-groups:ResourceTypeFilters</code>, specify resource types in the\n following format</p>\n <p>\n <code>Key=resource-groups:ResourceTypeFilters,Values=<i>AWS::EC2::INSTANCE</i>,<i>AWS::EC2::VPC</i>\n </code>\n </p>\n </note>\n \n <p>For more information about these examples formats, including the best use case for each one,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/mw-cli-tutorial-targets-examples.html\">Examples: Register\n targets with a maintenance window</a> in the <i>AWS Systems Manager User Guide</i>.</p>",
"smithy.api#required": {}
}
},
"OwnerInformation": {
"target": "com.amazonaws.ssm#OwnerInformation",
"traits": {
"smithy.api#documentation": "<p>User-provided value that will be included in any CloudWatch events raised while running\n tasks for these targets in this maintenance window.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>An optional name for the target.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>An optional description for the target.</p>"
}
},
"ClientToken": {
"target": "com.amazonaws.ssm#ClientToken",
"traits": {
"smithy.api#documentation": "<p>User-provided idempotency token.</p>",
"smithy.api#idempotencyToken": {}
}
}
}
},
"com.amazonaws.ssm#RegisterTargetWithMaintenanceWindowResult": {
"type": "structure",
"members": {
"WindowTargetId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTargetId",
"traits": {
"smithy.api#documentation": "<p>The ID of the target definition in this maintenance window.</p>"
}
}
}
},
"com.amazonaws.ssm#RegisterTaskWithMaintenanceWindow": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#RegisterTaskWithMaintenanceWindowRequest"
},
"output": {
"target": "com.amazonaws.ssm#RegisterTaskWithMaintenanceWindowResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#FeatureNotAvailableException"
},
{
"target": "com.amazonaws.ssm#IdempotentParameterMismatch"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ResourceLimitExceededException"
}
],
"traits": {
"smithy.api#documentation": "<p>Adds a new task to a maintenance window.</p>"
}
},
"com.amazonaws.ssm#RegisterTaskWithMaintenanceWindowRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window the task should be added to.</p>",
"smithy.api#required": {}
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets (either instances or maintenance window targets).</p>\n <note>\n <p>One or more targets must be specified for maintenance window Run Command-type tasks.\n Depending on the task, targets are optional for other maintenance window task types (Automation,\n AWS Lambda, and AWS Step Functions). For more information about running tasks that do not\n specify targets, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html\">Registering\n maintenance window tasks without targets</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>\n </note>\n <p>Specify instances using the following format: </p>\n <p>\n <code>Key=InstanceIds,Values=<instance-id-1>,<instance-id-2></code>\n </p>\n <p>Specify maintenance window targets using the following format:</p>\n <p>\n <code>Key=WindowTargetIds,Values=<window-target-id-1>,<window-target-id-2></code>\n </p>"
}
},
"TaskArn": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskArn",
"traits": {
"smithy.api#documentation": "<p>The ARN of the task to run.</p>",
"smithy.api#required": {}
}
},
"ServiceRoleArn": {
"target": "com.amazonaws.ssm#ServiceRole",
"traits": {
"smithy.api#documentation": "<p>The ARN of the IAM service role for Systems Manager to assume when running a \n maintenance window task. If you do not specify a service role ARN, Systems Manager uses your account's \n service-linked role. If no service-linked role for Systems Manager exists in your account, it is created when you run \n <code>RegisterTaskWithMaintenanceWindow</code>.</p>\n <p>For more information, see the following topics in the in the <i>AWS Systems Manager User Guide</i>:</p>\n <ul>\n <li>\n <p>\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html#slr-permissions\">Using \n service-linked roles for Systems Manager</a> \n </p>\n </li>\n <li>\n <p>\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-maintenance-permissions.html#maintenance-window-tasks-service-role\">Should I use a service-linked role or a custom service role to run maintenance window tasks?\n </a>\n </p>\n </li>\n </ul>"
}
},
"TaskType": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskType",
"traits": {
"smithy.api#documentation": "<p>The type of task being registered.</p>",
"smithy.api#required": {}
}
},
"TaskParameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters that should be passed to the task when it is run.</p>\n <note>\n <p>\n <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,\n instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information\n about how Systems Manager handles these options for the supported maintenance window task\n types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>"
}
},
"TaskInvocationParameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskInvocationParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters that the task should use during execution. Populate only the fields that\n match the task type. All other fields should be empty. </p>"
}
},
"Priority": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskPriority",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The priority of the task in the maintenance window, the lower the number the higher the\n priority. Tasks in a maintenance window are scheduled in priority order with tasks that have the\n same priority scheduled in parallel.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of targets this task can be run for in parallel.</p>\n <note>\n <p>For maintenance window tasks without a target specified, you cannot supply a value for this\n option. Instead, the system inserts a placeholder value of <code>1</code>. This value does not\n affect the running of your task.</p>\n </note>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The maximum number of errors allowed before this task stops being scheduled.</p>\n <note>\n <p>For maintenance window tasks without a target specified, you cannot supply a value for this\n option. Instead, the system inserts a placeholder value of <code>1</code>. This value does not\n affect the running of your task.</p>\n </note>"
}
},
"LoggingInfo": {
"target": "com.amazonaws.ssm#LoggingInfo",
"traits": {
"smithy.api#documentation": "<p>A structure containing information about an S3 bucket to write instance-level logs to. </p>\n <note>\n <p>\n <code>LoggingInfo</code> has been deprecated. To specify an S3 bucket to contain logs, instead use the\n <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.\n For information about how Systems Manager handles these options for the supported maintenance\n window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>An optional name for the task.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>An optional description for the task.</p>"
}
},
"ClientToken": {
"target": "com.amazonaws.ssm#ClientToken",
"traits": {
"smithy.api#documentation": "<p>User-provided idempotency token.</p>",
"smithy.api#idempotencyToken": {}
}
}
}
},
"com.amazonaws.ssm#RegisterTaskWithMaintenanceWindowResult": {
"type": "structure",
"members": {
"WindowTaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskId",
"traits": {
"smithy.api#documentation": "<p>The ID of the task in the maintenance window.</p>"
}
}
}
},
"com.amazonaws.ssm#RegistrationLimit": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 1000
}
}
},
"com.amazonaws.ssm#RegistrationsCount": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 1000
}
}
},
"com.amazonaws.ssm#RelatedOpsItem": {
"type": "structure",
"members": {
"OpsItemId": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ID of an OpsItem related to the current OpsItem.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>An OpsItems that shares something in common with the current OpsItem. For example, related\n OpsItems can include OpsItems with similar error messages, impacted resources, or statuses for\n the impacted resource.</p>"
}
},
"com.amazonaws.ssm#RelatedOpsItems": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#RelatedOpsItem"
}
},
"com.amazonaws.ssm#RemainingCount": {
"type": "integer"
},
"com.amazonaws.ssm#RemoveTagsFromResource": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#RemoveTagsFromResourceRequest"
},
"output": {
"target": "com.amazonaws.ssm#RemoveTagsFromResourceResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidResourceId"
},
{
"target": "com.amazonaws.ssm#InvalidResourceType"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
}
],
"traits": {
"smithy.api#documentation": "<p>Removes tag keys from the specified resource.</p>"
}
},
"com.amazonaws.ssm#RemoveTagsFromResourceRequest": {
"type": "structure",
"members": {
"ResourceType": {
"target": "com.amazonaws.ssm#ResourceTypeForTagging",
"traits": {
"smithy.api#documentation": "<p>The type of resource from which you want to remove a tag.</p>\n <note>\n <p>The ManagedInstance type for this API action is only for on-premises managed instances.\n Specify the name of the managed instance in the following format: mi-ID_number. For example,\n mi-1a2b3c4d5e6f.</p>\n </note>",
"smithy.api#required": {}
}
},
"ResourceId": {
"target": "com.amazonaws.ssm#ResourceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the resource from which you want to remove tags. For example:</p>\n <p>ManagedInstance: mi-012345abcde</p>\n <p>MaintenanceWindow: mw-012345abcde</p>\n <p>PatchBaseline: pb-012345abcde</p>\n <p>OpsMetadata object: <code>ResourceID</code> for tagging is created from the Amazon Resource\n Name (ARN) for the object. Specifically, <code>ResourceID</code> is created from the strings that\n come after the word <code>opsmetadata</code> in the ARN. For example, an OpsMetadata object with\n an ARN of <code>arn:aws:ssm:us-east-2:1234567890:opsmetadata/aws/ssm/MyGroup/appmanager</code>\n has a <code>ResourceID</code> of either <code>aws/ssm/MyGroup/appmanager</code> or\n <code>/aws/ssm/MyGroup/appmanager</code>.</p>\n <p>For the Document and Parameter values, use the name of the resource.</p>\n <note>\n <p>The ManagedInstance type for this API action is only for on-premises managed instances.\n Specify the name of the managed instance in the following format: mi-ID_number. For example,\n mi-1a2b3c4d5e6f.</p>\n </note>",
"smithy.api#required": {}
}
},
"TagKeys": {
"target": "com.amazonaws.ssm#KeyList",
"traits": {
"smithy.api#documentation": "<p>Tag keys that you want to remove from the specified resource.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#RemoveTagsFromResourceResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#ResetServiceSetting": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ResetServiceSettingRequest"
},
"output": {
"target": "com.amazonaws.ssm#ResetServiceSettingResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ServiceSettingNotFound"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
}
],
"traits": {
"smithy.api#documentation": "<p>\n <code>ServiceSetting</code> is an account-level setting for an AWS service. This setting\n defines how a user interacts with or uses a service or a feature of a service. For example, if an\n AWS service charges money to the account based on feature or service usage, then the AWS service\n team might create a default setting of \"false\". This means the user can't use this feature unless\n they change the setting to \"true\" and intentionally opt in for a paid feature.</p>\n <p>Services map a <code>SettingId</code> object to a setting value. AWS services teams define\n the default value for a <code>SettingId</code>. You can't create a new <code>SettingId</code>,\n but you can overwrite the default value if you have the <code>ssm:UpdateServiceSetting</code>\n permission for the setting. Use the <a>GetServiceSetting</a> API action to view the\n current value. Use the <a>UpdateServiceSetting</a> API action to change the default\n setting. </p>\n <p>Reset the service setting for the account to the default value as provisioned by the AWS\n service team. </p>"
}
},
"com.amazonaws.ssm#ResetServiceSettingRequest": {
"type": "structure",
"members": {
"SettingId": {
"target": "com.amazonaws.ssm#ServiceSettingId",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the service setting to reset. The setting ID can be\n <code>/ssm/automation/customer-script-log-destination</code>,\n <code>/ssm/automation/customer-script-log-group-name</code>,\n <code>/ssm/parameter-store/default-parameter-tier</code>,\n <code>/ssm/parameter-store/high-throughput-enabled</code>, or\n <code>/ssm/managed-instance/activation-tier</code>. For example,\n <code>arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled</code>.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>The request body of the ResetServiceSetting API action.</p>"
}
},
"com.amazonaws.ssm#ResetServiceSettingResult": {
"type": "structure",
"members": {
"ServiceSetting": {
"target": "com.amazonaws.ssm#ServiceSetting",
"traits": {
"smithy.api#documentation": "<p>The current, effective service setting after calling the ResetServiceSetting API\n action.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The result body of the ResetServiceSetting API action.</p>"
}
},
"com.amazonaws.ssm#ResolvedTargets": {
"type": "structure",
"members": {
"ParameterValues": {
"target": "com.amazonaws.ssm#TargetParameterList",
"traits": {
"smithy.api#documentation": "<p>A list of parameter values sent to targets that resolved during the Automation\n execution.</p>"
}
},
"Truncated": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#documentation": "<p>A boolean value indicating whether the resolved target list is truncated.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about targets that resolved during the Automation execution.</p>"
}
},
"com.amazonaws.ssm#ResourceComplianceSummaryItem": {
"type": "structure",
"members": {
"ComplianceType": {
"target": "com.amazonaws.ssm#ComplianceTypeName",
"traits": {
"smithy.api#documentation": "<p>The compliance type.</p>"
}
},
"ResourceType": {
"target": "com.amazonaws.ssm#ComplianceResourceType",
"traits": {
"smithy.api#documentation": "<p>The resource type.</p>"
}
},
"ResourceId": {
"target": "com.amazonaws.ssm#ComplianceResourceId",
"traits": {
"smithy.api#documentation": "<p>The resource ID.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#ComplianceStatus",
"traits": {
"smithy.api#documentation": "<p>The compliance status for the resource.</p>"
}
},
"OverallSeverity": {
"target": "com.amazonaws.ssm#ComplianceSeverity",
"traits": {
"smithy.api#documentation": "<p>The highest severity item found for the resource. The resource is compliant for this\n item.</p>"
}
},
"ExecutionSummary": {
"target": "com.amazonaws.ssm#ComplianceExecutionSummary",
"traits": {
"smithy.api#documentation": "<p>Information about the execution.</p>"
}
},
"CompliantSummary": {
"target": "com.amazonaws.ssm#CompliantSummary",
"traits": {
"smithy.api#documentation": "<p>A list of items that are compliant for the resource.</p>"
}
},
"NonCompliantSummary": {
"target": "com.amazonaws.ssm#NonCompliantSummary",
"traits": {
"smithy.api#documentation": "<p>A list of items that aren't compliant for the resource.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Compliance summary information for a specific resource. </p>"
}
},
"com.amazonaws.ssm#ResourceComplianceSummaryItemList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ResourceComplianceSummaryItem",
"traits": {
"smithy.api#xmlName": "Item"
}
}
},
"com.amazonaws.ssm#ResourceCount": {
"type": "integer"
},
"com.amazonaws.ssm#ResourceCountByStatus": {
"type": "string"
},
"com.amazonaws.ssm#ResourceDataSyncAWSKMSKeyARN": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 512
},
"smithy.api#pattern": "arn:.*"
}
},
"com.amazonaws.ssm#ResourceDataSyncAlreadyExistsException": {
"type": "structure",
"members": {
"SyncName": {
"target": "com.amazonaws.ssm#ResourceDataSyncName"
}
},
"traits": {
"smithy.api#documentation": "<p>A sync configuration with the same name already exists.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ResourceDataSyncAwsOrganizationsSource": {
"type": "structure",
"members": {
"OrganizationSourceType": {
"target": "com.amazonaws.ssm#ResourceDataSyncOrganizationSourceType",
"traits": {
"smithy.api#documentation": "<p>If an AWS Organization is present, this is either <code>OrganizationalUnits</code> or\n <code>EntireOrganization</code>. For <code>OrganizationalUnits</code>, the data is aggregated\n from a set of organization units. For <code>EntireOrganization</code>, the data is aggregated\n from the entire AWS Organization. </p>",
"smithy.api#required": {}
}
},
"OrganizationalUnits": {
"target": "com.amazonaws.ssm#ResourceDataSyncOrganizationalUnitList",
"traits": {
"smithy.api#documentation": "<p>The AWS Organizations organization units included in the sync.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the AwsOrganizationsSource resource data sync source. A sync source of\n this type can synchronize data from AWS Organizations or, if an AWS Organization is not present, from\n multiple AWS Regions.</p>"
}
},
"com.amazonaws.ssm#ResourceDataSyncConflictException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Another <code>UpdateResourceDataSync</code> request is being processed. Wait a few minutes\n and try again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ResourceDataSyncCountExceededException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You have exceeded the allowed maximum sync configurations.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ResourceDataSyncCreatedTime": {
"type": "timestamp"
},
"com.amazonaws.ssm#ResourceDataSyncDestinationDataSharing": {
"type": "structure",
"members": {
"DestinationDataSharingType": {
"target": "com.amazonaws.ssm#ResourceDataSyncDestinationDataSharingType",
"traits": {
"smithy.api#documentation": "<p>The sharing data type. Only <code>Organization</code> is supported.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Synchronize Systems Manager Inventory data from multiple AWS accounts defined in AWS Organizations to\n a centralized S3 bucket. Data is synchronized to individual key prefixes in the central bucket.\n Each key prefix represents a different AWS account ID.</p>"
}
},
"com.amazonaws.ssm#ResourceDataSyncDestinationDataSharingType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#ResourceDataSyncEnableAllOpsDataSources": {
"type": "boolean"
},
"com.amazonaws.ssm#ResourceDataSyncIncludeFutureRegions": {
"type": "boolean"
},
"com.amazonaws.ssm#ResourceDataSyncInvalidConfigurationException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified sync configuration is invalid.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ResourceDataSyncItem": {
"type": "structure",
"members": {
"SyncName": {
"target": "com.amazonaws.ssm#ResourceDataSyncName",
"traits": {
"smithy.api#documentation": "<p>The name of the Resource Data Sync.</p>"
}
},
"SyncType": {
"target": "com.amazonaws.ssm#ResourceDataSyncType",
"traits": {
"smithy.api#documentation": "<p>The type of resource data sync. If <code>SyncType</code> is <code>SyncToDestination</code>,\n then the resource data sync synchronizes data to an S3 bucket. If the <code>SyncType</code> is\n <code>SyncFromSource</code> then the resource data sync synchronizes data from AWS Organizations or from\n multiple AWS Regions.</p>"
}
},
"SyncSource": {
"target": "com.amazonaws.ssm#ResourceDataSyncSourceWithState",
"traits": {
"smithy.api#documentation": "<p>Information about the source where the data was synchronized. </p>"
}
},
"S3Destination": {
"target": "com.amazonaws.ssm#ResourceDataSyncS3Destination",
"traits": {
"smithy.api#documentation": "<p>Configuration information for the target S3 bucket.</p>"
}
},
"LastSyncTime": {
"target": "com.amazonaws.ssm#LastResourceDataSyncTime",
"traits": {
"smithy.api#documentation": "<p>The last time the configuration attempted to sync (UTC).</p>"
}
},
"LastSuccessfulSyncTime": {
"target": "com.amazonaws.ssm#LastSuccessfulResourceDataSyncTime",
"traits": {
"smithy.api#documentation": "<p>The last time the sync operations returned a status of <code>SUCCESSFUL</code> (UTC).</p>"
}
},
"SyncLastModifiedTime": {
"target": "com.amazonaws.ssm#ResourceDataSyncLastModifiedTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the resource data sync was changed. </p>"
}
},
"LastStatus": {
"target": "com.amazonaws.ssm#LastResourceDataSyncStatus",
"traits": {
"smithy.api#documentation": "<p>The status reported by the last sync.</p>"
}
},
"SyncCreatedTime": {
"target": "com.amazonaws.ssm#ResourceDataSyncCreatedTime",
"traits": {
"smithy.api#documentation": "<p>The date and time the configuration was created (UTC).</p>"
}
},
"LastSyncStatusMessage": {
"target": "com.amazonaws.ssm#LastResourceDataSyncMessage",
"traits": {
"smithy.api#documentation": "<p>The status message details reported by the last sync.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about a Resource Data Sync configuration, including its current status and last\n successful sync.</p>"
}
},
"com.amazonaws.ssm#ResourceDataSyncItemList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ResourceDataSyncItem"
}
},
"com.amazonaws.ssm#ResourceDataSyncLastModifiedTime": {
"type": "timestamp"
},
"com.amazonaws.ssm#ResourceDataSyncName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#ResourceDataSyncNotFoundException": {
"type": "structure",
"members": {
"SyncName": {
"target": "com.amazonaws.ssm#ResourceDataSyncName"
},
"SyncType": {
"target": "com.amazonaws.ssm#ResourceDataSyncType"
},
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified sync name was not found.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ResourceDataSyncOrganizationSourceType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#ResourceDataSyncOrganizationalUnit": {
"type": "structure",
"members": {
"OrganizationalUnitId": {
"target": "com.amazonaws.ssm#ResourceDataSyncOrganizationalUnitId",
"traits": {
"smithy.api#documentation": "<p>The AWS Organization unit ID data source for the sync.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The AWS Organizations organizational unit data source for the sync.</p>"
}
},
"com.amazonaws.ssm#ResourceDataSyncOrganizationalUnitId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
},
"smithy.api#pattern": "^ou-[0-9a-z]{4,32}-[a-z0-9]{8,32}$"
}
},
"com.amazonaws.ssm#ResourceDataSyncOrganizationalUnitList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ResourceDataSyncOrganizationalUnit"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1000
}
}
},
"com.amazonaws.ssm#ResourceDataSyncS3BucketName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 2048
}
}
},
"com.amazonaws.ssm#ResourceDataSyncS3Destination": {
"type": "structure",
"members": {
"BucketName": {
"target": "com.amazonaws.ssm#ResourceDataSyncS3BucketName",
"traits": {
"smithy.api#documentation": "<p>The name of the S3 bucket where the aggregated data is stored.</p>",
"smithy.api#required": {}
}
},
"Prefix": {
"target": "com.amazonaws.ssm#ResourceDataSyncS3Prefix",
"traits": {
"smithy.api#documentation": "<p>An Amazon S3 prefix for the bucket.</p>"
}
},
"SyncFormat": {
"target": "com.amazonaws.ssm#ResourceDataSyncS3Format",
"traits": {
"smithy.api#documentation": "<p>A supported sync format. The following format is currently supported: JsonSerDe</p>",
"smithy.api#required": {}
}
},
"Region": {
"target": "com.amazonaws.ssm#ResourceDataSyncS3Region",
"traits": {
"smithy.api#documentation": "<p>The AWS Region with the S3 bucket targeted by the Resource Data Sync.</p>",
"smithy.api#required": {}
}
},
"AWSKMSKeyARN": {
"target": "com.amazonaws.ssm#ResourceDataSyncAWSKMSKeyARN",
"traits": {
"smithy.api#documentation": "<p>The ARN of an encryption key for a destination in Amazon S3. Must belong to the same Region as\n the destination S3 bucket.</p>"
}
},
"DestinationDataSharing": {
"target": "com.amazonaws.ssm#ResourceDataSyncDestinationDataSharing",
"traits": {
"smithy.api#documentation": "<p>Enables destination data sharing. By default, this field is <code>null</code>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the target S3 bucket for the Resource Data Sync.</p>"
}
},
"com.amazonaws.ssm#ResourceDataSyncS3Format": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "JsonSerDe",
"name": "JSON_SERDE"
}
]
}
},
"com.amazonaws.ssm#ResourceDataSyncS3Prefix": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
}
}
},
"com.amazonaws.ssm#ResourceDataSyncS3Region": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#ResourceDataSyncSource": {
"type": "structure",
"members": {
"SourceType": {
"target": "com.amazonaws.ssm#ResourceDataSyncSourceType",
"traits": {
"smithy.api#documentation": "<p>The type of data source for the resource data sync. <code>SourceType</code> is either\n <code>AwsOrganizations</code> (if an organization is present in AWS Organizations) or\n <code>singleAccountMultiRegions</code>.</p>",
"smithy.api#required": {}
}
},
"AwsOrganizationsSource": {
"target": "com.amazonaws.ssm#ResourceDataSyncAwsOrganizationsSource",
"traits": {
"smithy.api#documentation": "<p>Information about the AwsOrganizationsSource resource data sync source. A sync source of\n this type can synchronize data from AWS Organizations.</p>"
}
},
"SourceRegions": {
"target": "com.amazonaws.ssm#ResourceDataSyncSourceRegionList",
"traits": {
"smithy.api#documentation": "<p>The <code>SyncSource</code> AWS Regions included in the resource data sync.</p>",
"smithy.api#required": {}
}
},
"IncludeFutureRegions": {
"target": "com.amazonaws.ssm#ResourceDataSyncIncludeFutureRegions",
"traits": {
"smithy.api#documentation": "<p>Whether to automatically synchronize and aggregate data from new AWS Regions when those\n Regions come online.</p>"
}
},
"EnableAllOpsDataSources": {
"target": "com.amazonaws.ssm#ResourceDataSyncEnableAllOpsDataSources",
"traits": {
"smithy.api#documentation": "<p>When you create a resource data sync, if you choose one of the AWS Organizations options, then Systems Manager\n automatically enables all OpsData sources in the selected AWS Regions for all AWS accounts in\n your organization (or in the selected organization units). For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/Explorer-resouce-data-sync-multiple-accounts-and-regions.html\">About multiple account and Region resource data syncs</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the source of the data included in the resource data sync.</p>"
}
},
"com.amazonaws.ssm#ResourceDataSyncSourceRegion": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#ResourceDataSyncSourceRegionList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ResourceDataSyncSourceRegion"
}
},
"com.amazonaws.ssm#ResourceDataSyncSourceType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#ResourceDataSyncSourceWithState": {
"type": "structure",
"members": {
"SourceType": {
"target": "com.amazonaws.ssm#ResourceDataSyncSourceType",
"traits": {
"smithy.api#documentation": "<p>The type of data source for the resource data sync. <code>SourceType</code> is either\n <code>AwsOrganizations</code> (if an organization is present in AWS Organizations) or\n <code>singleAccountMultiRegions</code>.</p>"
}
},
"AwsOrganizationsSource": {
"target": "com.amazonaws.ssm#ResourceDataSyncAwsOrganizationsSource",
"traits": {
"smithy.api#documentation": "<p>The field name in <code>SyncSource</code> for the\n <code>ResourceDataSyncAwsOrganizationsSource</code> type.</p>"
}
},
"SourceRegions": {
"target": "com.amazonaws.ssm#ResourceDataSyncSourceRegionList",
"traits": {
"smithy.api#documentation": "<p>The <code>SyncSource</code> AWS Regions included in the resource data sync.</p>"
}
},
"IncludeFutureRegions": {
"target": "com.amazonaws.ssm#ResourceDataSyncIncludeFutureRegions",
"traits": {
"smithy.api#documentation": "<p>Whether to automatically synchronize and aggregate data from new AWS Regions when those\n Regions come online.</p>"
}
},
"State": {
"target": "com.amazonaws.ssm#ResourceDataSyncState",
"traits": {
"smithy.api#documentation": "<p>The data type name for including resource data sync state. There are four sync\n states:</p>\n <p>\n <code>OrganizationNotExists</code>: Your organization doesn't exist.</p>\n <p>\n <code>NoPermissions</code>: The system can't locate the service-linked role. This role is\n automatically created when a user creates a resource data sync in Explorer.</p>\n <p>\n <code>InvalidOrganizationalUnit</code>: You specified or selected an invalid unit in the\n resource data sync configuration.</p>\n <p>\n <code>TrustedAccessDisabled</code>: You disabled Systems Manager access in the organization in\n AWS Organizations.</p>"
}
},
"EnableAllOpsDataSources": {
"target": "com.amazonaws.ssm#ResourceDataSyncEnableAllOpsDataSources",
"traits": {
"smithy.api#documentation": "<p>When you create a resource data sync, if you choose one of the AWS Organizations options, then Systems Manager\n automatically enables all OpsData sources in the selected AWS Regions for all AWS accounts in\n your organization (or in the selected organization units). For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/Explorer-resouce-data-sync-multiple-accounts-and-regions.html\">About multiple account and Region resource data syncs</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The data type name for including resource data sync state. There are four sync\n states:</p>\n <p>\n <code>OrganizationNotExists</code> (Your organization doesn't exist)</p>\n <p>\n <code>NoPermissions</code> (The system can't locate the service-linked role. This role is\n automatically created when a user creates a resource data sync in Explorer.)</p>\n <p>\n <code>InvalidOrganizationalUnit</code> (You specified or selected an invalid unit in the\n resource data sync configuration.)</p>\n <p>\n <code>TrustedAccessDisabled</code> (You disabled Systems Manager access in the organization in\n AWS Organizations.)</p>"
}
},
"com.amazonaws.ssm#ResourceDataSyncState": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#ResourceDataSyncType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 64
}
}
},
"com.amazonaws.ssm#ResourceId": {
"type": "string"
},
"com.amazonaws.ssm#ResourceInUseException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Error returned if an attempt is made to delete a patch baseline that is registered for a\n patch group.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ResourceLimitExceededException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Error returned when the caller has exceeded the default resource quotas. For example, too\n many maintenance windows or patch baselines have been created.</p>\n <p>For information about resource quotas in Systems Manager, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/ssm.html#limits_ssm\">Systems Manager service quotas</a> in the\n <i>AWS General Reference</i>.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ResourceType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "ManagedInstance",
"name": "MANAGED_INSTANCE"
},
{
"value": "Document",
"name": "DOCUMENT"
},
{
"value": "EC2Instance",
"name": "EC2_INSTANCE"
}
]
}
},
"com.amazonaws.ssm#ResourceTypeForTagging": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Document",
"name": "DOCUMENT"
},
{
"value": "ManagedInstance",
"name": "MANAGED_INSTANCE"
},
{
"value": "MaintenanceWindow",
"name": "MAINTENANCE_WINDOW"
},
{
"value": "Parameter",
"name": "PARAMETER"
},
{
"value": "PatchBaseline",
"name": "PATCH_BASELINE"
},
{
"value": "OpsItem",
"name": "OPS_ITEM"
},
{
"value": "OpsMetadata",
"name": "OPSMETADATA"
}
]
}
},
"com.amazonaws.ssm#ResponseCode": {
"type": "integer"
},
"com.amazonaws.ssm#ResultAttribute": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName",
"traits": {
"smithy.api#documentation": "<p>Name of the inventory item type. Valid value: AWS:InstanceInformation. Default Value:\n AWS:InstanceInformation.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>The inventory item result attribute.</p>"
}
},
"com.amazonaws.ssm#ResultAttributeList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ResultAttribute",
"traits": {
"smithy.api#xmlName": "ResultAttribute"
}
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1
}
}
},
"com.amazonaws.ssm#ResumeSession": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#ResumeSessionRequest"
},
"output": {
"target": "com.amazonaws.ssm#ResumeSessionResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Reconnects a session to an instance after it has been disconnected. Connections can be\n resumed for disconnected sessions, but not terminated sessions.</p>\n <note>\n <p>This command is primarily for use by client machines to automatically reconnect during\n intermittent network issues. It is not intended for any other use.</p>\n </note>"
}
},
"com.amazonaws.ssm#ResumeSessionRequest": {
"type": "structure",
"members": {
"SessionId": {
"target": "com.amazonaws.ssm#SessionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the disconnected session to resume.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#ResumeSessionResponse": {
"type": "structure",
"members": {
"SessionId": {
"target": "com.amazonaws.ssm#SessionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the session.</p>"
}
},
"TokenValue": {
"target": "com.amazonaws.ssm#TokenValue",
"traits": {
"smithy.api#documentation": "<p>An encrypted token value containing session and caller information. Used to authenticate the\n connection to the instance.</p>"
}
},
"StreamUrl": {
"target": "com.amazonaws.ssm#StreamUrl",
"traits": {
"smithy.api#documentation": "<p>A URL back to SSM Agent on the instance that the Session Manager client uses to send commands and\n receive output from the instance. Format: <code>wss://ssmmessages.<b>region</b>.amazonaws.com/v1/data-channel/<b>session-id</b>?stream=(input|output)</code>.</p>\n <p>\n <b>region</b> represents the Region identifier for an\n\t\t\t\t\t\tAWS Region supported by AWS Systems Manager, such as <code>us-east-2</code> for the US East (Ohio) Region.\n\t\t\t\t\t\tFor a list of supported <b>region</b> values, see the <b>Region</b> column in <a href=\"http://docs.aws.amazon.com/general/latest/gr/ssm.html#ssm_region\">Systems Manager service endpoints</a> in the\n <i>AWS General Reference</i>.</p>\n <p>\n <b>session-id</b> represents the ID of a Session Manager session, such as\n <code>1a2b3c4dEXAMPLE</code>.</p>"
}
}
}
},
"com.amazonaws.ssm#ReviewInformation": {
"type": "structure",
"members": {
"ReviewedTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time that the reviewer took action on the document review request.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#ReviewStatus",
"traits": {
"smithy.api#documentation": "<p>The current status of the document review request.</p>"
}
},
"Reviewer": {
"target": "com.amazonaws.ssm#Reviewer",
"traits": {
"smithy.api#documentation": "<p>The reviewer assigned to take action on the document review request.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about the result of a document review request.</p>"
}
},
"com.amazonaws.ssm#ReviewInformationList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ReviewInformation",
"traits": {
"smithy.api#xmlName": "ReviewInformation"
}
},
"traits": {
"smithy.api#length": {
"min": 1
}
}
},
"com.amazonaws.ssm#ReviewStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "APPROVED",
"name": "APPROVED"
},
{
"value": "NOT_REVIEWED",
"name": "NOT_REVIEWED"
},
{
"value": "PENDING",
"name": "PENDING"
},
{
"value": "REJECTED",
"name": "REJECTED"
}
]
}
},
"com.amazonaws.ssm#Reviewer": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 50
},
"smithy.api#pattern": "^[a-zA-Z0-9_\\-.]{1,128}$"
}
},
"com.amazonaws.ssm#Runbook": {
"type": "structure",
"members": {
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Automation runbook (Automation document) used in a runbook workflow.</p>",
"smithy.api#required": {}
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the Automation runbook (Automation document) used in a\n runbook workflow.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>The key-value map of execution parameters, which were supplied when calling\n <code>StartChangeRequestExecution</code>.</p>"
}
},
"TargetParameterName": {
"target": "com.amazonaws.ssm#AutomationParameterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the parameter used as the target resource for the rate-controlled\n runbook workflow. Required if you specify <code>Targets</code>. </p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>A key-value mapping to target resources that the Runbook operation performs tasks on.\n Required if you specify <code>TargetParameterName</code>.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The <code>MaxConcurrency</code> value specified by the user when the operation started,\n indicating the maximum number of resources that the runbook operation can run on at the same\n time.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The <code>MaxErrors</code> value specified by the user when the execution started,\n indicating the maximum number of errors that can occur during the operation before the updates\n are stopped or rolled back.</p>"
}
},
"TargetLocations": {
"target": "com.amazonaws.ssm#TargetLocations",
"traits": {
"smithy.api#documentation": "<p>Information about the AWS Regions and accounts targeted by the current Runbook\n operation.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about an Automation runbook (Automation document) used in a runbook workflow in\n Change Manager.</p>\n <note>\n <p>The Automation runbooks specified for the runbook workflow can't run until all required\n approvals for the change request have been received.</p>\n </note>"
}
},
"com.amazonaws.ssm#Runbooks": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Runbook"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1
}
}
},
"com.amazonaws.ssm#S3BucketName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 3,
"max": 63
}
}
},
"com.amazonaws.ssm#S3KeyPrefix": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 500
}
}
},
"com.amazonaws.ssm#S3OutputLocation": {
"type": "structure",
"members": {
"OutputS3Region": {
"target": "com.amazonaws.ssm#S3Region",
"traits": {
"smithy.api#documentation": "<p>(Deprecated) You can no longer specify this parameter. The system ignores it. Instead, Systems Manager\n automatically determines the Region of the S3 bucket.</p>"
}
},
"OutputS3BucketName": {
"target": "com.amazonaws.ssm#S3BucketName",
"traits": {
"smithy.api#documentation": "<p>The name of the S3 bucket.</p>"
}
},
"OutputS3KeyPrefix": {
"target": "com.amazonaws.ssm#S3KeyPrefix",
"traits": {
"smithy.api#documentation": "<p>The S3 bucket subfolder.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An S3 bucket where you want to store the results of this request.</p>"
}
},
"com.amazonaws.ssm#S3OutputUrl": {
"type": "structure",
"members": {
"OutputUrl": {
"target": "com.amazonaws.ssm#Url",
"traits": {
"smithy.api#documentation": "<p>A URL for an S3 bucket where you want to store the results of this request.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A URL for the S3 bucket where you want to store the results of this request.</p>"
}
},
"com.amazonaws.ssm#S3Region": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 3,
"max": 20
}
}
},
"com.amazonaws.ssm#ScheduleExpression": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
}
}
},
"com.amazonaws.ssm#ScheduledWindowExecution": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window to be run.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The name of the maintenance window to be run.</p>"
}
},
"ExecutionTime": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The time, in ISO-8601 Extended format, that the maintenance window is scheduled to be\n run.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about a scheduled execution for a maintenance window.</p>"
}
},
"com.amazonaws.ssm#ScheduledWindowExecutionList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ScheduledWindowExecution"
}
},
"com.amazonaws.ssm#SendAutomationSignal": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#SendAutomationSignalRequest"
},
"output": {
"target": "com.amazonaws.ssm#SendAutomationSignalResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AutomationExecutionNotFoundException"
},
{
"target": "com.amazonaws.ssm#AutomationStepNotFoundException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidAutomationSignalException"
}
],
"traits": {
"smithy.api#documentation": "<p>Sends a signal to an Automation execution to change the current behavior or status of the\n execution. </p>"
}
},
"com.amazonaws.ssm#SendAutomationSignalRequest": {
"type": "structure",
"members": {
"AutomationExecutionId": {
"target": "com.amazonaws.ssm#AutomationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The unique identifier for an existing Automation execution that you want to send the signal\n to.</p>",
"smithy.api#required": {}
}
},
"SignalType": {
"target": "com.amazonaws.ssm#SignalType",
"traits": {
"smithy.api#documentation": "<p>The type of signal to send to an Automation execution. </p>",
"smithy.api#required": {}
}
},
"Payload": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>The data sent with the signal. The data schema depends on the type of signal used in the\n request.</p>\n <p>For <code>Approve</code> and <code>Reject</code> signal types, the payload is an optional\n comment that you can send with the signal type. For example:</p>\n <p>\n <code>Comment=\"Looks good\"</code>\n </p>\n <p>For <code>StartStep</code> and <code>Resume</code> signal types, you must send the name of\n the Automation step to start or resume as the payload. For example:</p>\n <p>\n <code>StepName=\"step1\"</code>\n </p>\n <p>For the <code>StopStep</code> signal type, you must send the step execution ID as the\n payload. For example:</p>\n <p>\n <code>StepExecutionId=\"97fff367-fc5a-4299-aed8-0123456789ab\"</code>\n </p>"
}
}
}
},
"com.amazonaws.ssm#SendAutomationSignalResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#SendCommand": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#SendCommandRequest"
},
"output": {
"target": "com.amazonaws.ssm#SendCommandResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DuplicateInstanceId"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentVersion"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#InvalidNotificationConfig"
},
{
"target": "com.amazonaws.ssm#InvalidOutputFolder"
},
{
"target": "com.amazonaws.ssm#InvalidParameters"
},
{
"target": "com.amazonaws.ssm#InvalidRole"
},
{
"target": "com.amazonaws.ssm#MaxDocumentSizeExceeded"
},
{
"target": "com.amazonaws.ssm#UnsupportedPlatformType"
}
],
"traits": {
"smithy.api#documentation": "<p>Runs commands on one or more managed instances.</p>"
}
},
"com.amazonaws.ssm#SendCommandRequest": {
"type": "structure",
"members": {
"InstanceIds": {
"target": "com.amazonaws.ssm#InstanceIdList",
"traits": {
"smithy.api#documentation": "<p>The IDs of the instances where the command should run. Specifying instance IDs is most\n useful when you are targeting a limited number of instances, though you can specify up to 50\n IDs.</p>\n <p>To target a larger number of instances, or if you prefer not to list individual instance\n IDs, we recommend using the <code>Targets</code> option instead. Using <code>Targets</code>,\n which accepts tag key-value pairs to identify the instances to send commands to, you can a send\n command to tens, hundreds, or thousands of instances at once.</p>\n <p>For more information about how to use targets, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html\">Using targets and rate\n controls to send commands to a fleet</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>An array of search criteria that targets instances using a <code>Key,Value</code>\n combination that you specify. Specifying targets is most useful when you want to send a command\n to a large number of instances at once. Using <code>Targets</code>, which accepts tag key-value\n pairs to identify instances, you can send a command to tens, hundreds, or thousands of instances\n at once.</p>\n <p>To send a command to a smaller number of instances, you can use the <code>InstanceIds</code>\n option instead.</p>\n <p>For more information about how to use targets, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html\">Sending commands to a\n fleet</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document to run. This can be a public document or a custom document.\n To run a shared document belonging to another account, specify the document ARN. For more\n information about how to use shared documents, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-using-shared.html\">Using shared SSM documents</a>\n in the <i>AWS Systems Manager User Guide</i>.</p>",
"smithy.api#required": {}
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The SSM document version to use in the request. You can specify $DEFAULT, $LATEST, or a\n specific version number. If you run commands by using the AWS CLI, then you must escape the first\n two options by using a backslash. If you specify a version number, then you don't need to use the\n backslash. For example:</p>\n <p>--document-version \"\\$DEFAULT\"</p>\n <p>--document-version \"\\$LATEST\"</p>\n <p>--document-version \"3\"</p>"
}
},
"DocumentHash": {
"target": "com.amazonaws.ssm#DocumentHash",
"traits": {
"smithy.api#documentation": "<p>The Sha256 or Sha1 hash created by the system when the document was created. </p>\n <note>\n <p>Sha1 hashes have been deprecated.</p>\n </note>"
}
},
"DocumentHashType": {
"target": "com.amazonaws.ssm#DocumentHashType",
"traits": {
"smithy.api#documentation": "<p>Sha256 or Sha1.</p>\n <note>\n <p>Sha1 hashes have been deprecated.</p>\n </note>"
}
},
"TimeoutSeconds": {
"target": "com.amazonaws.ssm#TimeoutSeconds",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>If this time is reached and the command has not already started running, it will not\n run.</p>"
}
},
"Comment": {
"target": "com.amazonaws.ssm#Comment",
"traits": {
"smithy.api#documentation": "<p>User-specified information about the command, such as a brief description of what the\n command should do.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#Parameters",
"traits": {
"smithy.api#documentation": "<p>The required and optional parameters specified in the document being run.</p>"
}
},
"OutputS3Region": {
"target": "com.amazonaws.ssm#S3Region",
"traits": {
"smithy.api#documentation": "<p>(Deprecated) You can no longer specify this parameter. The system ignores it. Instead, Systems Manager\n automatically determines the Region of the S3 bucket.</p>"
}
},
"OutputS3BucketName": {
"target": "com.amazonaws.ssm#S3BucketName",
"traits": {
"smithy.api#documentation": "<p>The name of the S3 bucket where command execution responses should be stored.</p>"
}
},
"OutputS3KeyPrefix": {
"target": "com.amazonaws.ssm#S3KeyPrefix",
"traits": {
"smithy.api#documentation": "<p>The directory structure within the S3 bucket where the responses should be stored.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>(Optional) The maximum number of instances that are allowed to run the command at the same\n time. You can specify a number such as 10 or a percentage such as 10%. The default value is 50.\n For more information about how to use MaxConcurrency, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html#send-commands-velocity\">Using\n concurrency controls</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The maximum number of errors allowed without the command failing. When the command fails one\n more time beyond the value of MaxErrors, the systems stops sending the command to additional\n targets. You can specify a number like 10 or a percentage like 10%. The default value is 0. For\n more information about how to use MaxErrors, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html#send-commands-maxerrors\">Using\n error controls</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"ServiceRoleArn": {
"target": "com.amazonaws.ssm#ServiceRole",
"traits": {
"smithy.api#documentation": "<p>The ARN of the IAM service role to use to publish Amazon Simple Notification Service (Amazon SNS) notifications for Run\n Command commands.</p>"
}
},
"NotificationConfig": {
"target": "com.amazonaws.ssm#NotificationConfig",
"traits": {
"smithy.api#documentation": "<p>Configurations for sending notifications.</p>"
}
},
"CloudWatchOutputConfig": {
"target": "com.amazonaws.ssm#CloudWatchOutputConfig",
"traits": {
"smithy.api#documentation": "<p>Enables Systems Manager to send Run Command output to Amazon CloudWatch Logs. </p>"
}
}
}
},
"com.amazonaws.ssm#SendCommandResult": {
"type": "structure",
"members": {
"Command": {
"target": "com.amazonaws.ssm#Command",
"traits": {
"smithy.api#documentation": "<p>The request as it was received by Systems Manager. Also provides the command ID which can be used\n future references to this request.</p>"
}
}
}
},
"com.amazonaws.ssm#ServiceRole": {
"type": "string"
},
"com.amazonaws.ssm#ServiceSetting": {
"type": "structure",
"members": {
"SettingId": {
"target": "com.amazonaws.ssm#ServiceSettingId",
"traits": {
"smithy.api#documentation": "<p>The ID of the service setting.</p>"
}
},
"SettingValue": {
"target": "com.amazonaws.ssm#ServiceSettingValue",
"traits": {
"smithy.api#documentation": "<p>The value of the service setting.</p>"
}
},
"LastModifiedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The last time the service setting was modified.</p>"
}
},
"LastModifiedUser": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ARN of the last modified user. This field is populated only if the setting value was\n overwritten.</p>"
}
},
"ARN": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The ARN of the service setting.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The status of the service setting. The value can be Default, Customized or\n PendingUpdate.</p>\n <ul>\n <li>\n <p>Default: The current setting uses a default value provisioned by the AWS service\n team.</p>\n </li>\n <li>\n <p>Customized: The current setting use a custom value specified by the customer.</p>\n </li>\n <li>\n <p>PendingUpdate: The current setting uses a default or custom value, but a setting change\n request is pending approval.</p>\n </li>\n </ul>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The service setting data structure.</p>\n <p>\n <code>ServiceSetting</code> is an account-level setting for an AWS service. This setting\n defines how a user interacts with or uses a service or a feature of a service. For example, if an\n AWS service charges money to the account based on feature or service usage, then the AWS service\n team might create a default setting of \"false\". This means the user can't use this feature unless\n they change the setting to \"true\" and intentionally opt in for a paid feature.</p>\n <p>Services map a <code>SettingId</code> object to a setting value. AWS services teams define\n the default value for a <code>SettingId</code>. You can't create a new <code>SettingId</code>,\n but you can overwrite the default value if you have the <code>ssm:UpdateServiceSetting</code>\n permission for the setting. Use the <a>UpdateServiceSetting</a> API action to change\n the default setting. Or, use the <a>ResetServiceSetting</a> to change the value back\n to the original value defined by the AWS service team.</p>"
}
},
"com.amazonaws.ssm#ServiceSettingId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1000
}
}
},
"com.amazonaws.ssm#ServiceSettingNotFound": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified service setting was not found. Either the service name or the setting has not\n been provisioned by the AWS service team.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#ServiceSettingValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 4096
}
}
},
"com.amazonaws.ssm#Session": {
"type": "structure",
"members": {
"SessionId": {
"target": "com.amazonaws.ssm#SessionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the session.</p>"
}
},
"Target": {
"target": "com.amazonaws.ssm#SessionTarget",
"traits": {
"smithy.api#documentation": "<p>The instance that the Session Manager session connected to.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#SessionStatus",
"traits": {
"smithy.api#documentation": "<p>The status of the session. For example, \"Connected\" or \"Terminated\".</p>"
}
},
"StartDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, when the session began.</p>"
}
},
"EndDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, when the session was terminated.</p>"
}
},
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the Session Manager SSM document used to define the parameters and plugin settings for the\n session. For example, <code>SSM-SessionManagerRunShell</code>.</p>"
}
},
"Owner": {
"target": "com.amazonaws.ssm#SessionOwner",
"traits": {
"smithy.api#documentation": "<p>The ID of the AWS user account that started the session.</p>"
}
},
"Details": {
"target": "com.amazonaws.ssm#SessionDetails",
"traits": {
"smithy.api#documentation": "<p>Reserved for future use.</p>"
}
},
"OutputUrl": {
"target": "com.amazonaws.ssm#SessionManagerOutputUrl",
"traits": {
"smithy.api#documentation": "<p>Reserved for future use.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Information about a Session Manager connection to an instance.</p>"
}
},
"com.amazonaws.ssm#SessionDetails": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.ssm#SessionFilter": {
"type": "structure",
"members": {
"key": {
"target": "com.amazonaws.ssm#SessionFilterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the filter.</p>",
"smithy.api#required": {}
}
},
"value": {
"target": "com.amazonaws.ssm#SessionFilterValue",
"traits": {
"smithy.api#documentation": "<p>The filter value. Valid values for each filter key are as follows:</p>\n <ul>\n <li>\n <p>InvokedAfter: Specify a timestamp to limit your results. For example, specify\n 2018-08-29T00:00:00Z to see sessions that started August 29, 2018, and later.</p>\n </li>\n <li>\n <p>InvokedBefore: Specify a timestamp to limit your results. For example, specify\n 2018-08-29T00:00:00Z to see sessions that started before August 29, 2018.</p>\n </li>\n <li>\n <p>Target: Specify an instance to which session connections have been made.</p>\n </li>\n <li>\n <p>Owner: Specify an AWS user account to see a list of sessions started by that user.</p>\n </li>\n <li>\n <p>Status: Specify a valid session status to see a list of all sessions with that status.\n Status values you can specify include:</p>\n <ul>\n <li>\n <p>Connected</p>\n </li>\n <li>\n <p>Connecting</p>\n </li>\n <li>\n <p>Disconnected</p>\n </li>\n <li>\n <p>Terminated</p>\n </li>\n <li>\n <p>Terminating</p>\n </li>\n <li>\n <p>Failed</p>\n </li>\n </ul>\n </li>\n <li>\n <p>SessionId: Specify a session ID to return details about the session.</p>\n </li>\n </ul>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Describes a filter for Session Manager information.</p>"
}
},
"com.amazonaws.ssm#SessionFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "InvokedAfter",
"name": "INVOKED_AFTER"
},
{
"value": "InvokedBefore",
"name": "INVOKED_BEFORE"
},
{
"value": "Target",
"name": "TARGET_ID"
},
{
"value": "Owner",
"name": "OWNER"
},
{
"value": "Status",
"name": "STATUS"
},
{
"value": "SessionId",
"name": "SESSION_ID"
}
]
}
},
"com.amazonaws.ssm#SessionFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#SessionFilter"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 6
}
}
},
"com.amazonaws.ssm#SessionFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 400
}
}
},
"com.amazonaws.ssm#SessionId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 96
}
}
},
"com.amazonaws.ssm#SessionList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Session"
}
},
"com.amazonaws.ssm#SessionManagerCloudWatchOutputUrl": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 2083
}
}
},
"com.amazonaws.ssm#SessionManagerOutputUrl": {
"type": "structure",
"members": {
"S3OutputUrl": {
"target": "com.amazonaws.ssm#SessionManagerS3OutputUrl",
"traits": {
"smithy.api#documentation": "<p>Reserved for future use.</p>"
}
},
"CloudWatchOutputUrl": {
"target": "com.amazonaws.ssm#SessionManagerCloudWatchOutputUrl",
"traits": {
"smithy.api#documentation": "<p>Reserved for future use.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Reserved for future use.</p>"
}
},
"com.amazonaws.ssm#SessionManagerParameterName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 255
}
}
},
"com.amazonaws.ssm#SessionManagerParameterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 65535
}
}
},
"com.amazonaws.ssm#SessionManagerParameterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#SessionManagerParameterValue"
}
},
"com.amazonaws.ssm#SessionManagerParameters": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#SessionManagerParameterName"
},
"value": {
"target": "com.amazonaws.ssm#SessionManagerParameterValueList"
}
},
"com.amazonaws.ssm#SessionManagerS3OutputUrl": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 2083
}
}
},
"com.amazonaws.ssm#SessionMaxResults": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 200
}
}
},
"com.amazonaws.ssm#SessionOwner": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
}
}
},
"com.amazonaws.ssm#SessionState": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Active",
"name": "ACTIVE"
},
{
"value": "History",
"name": "HISTORY"
}
]
}
},
"com.amazonaws.ssm#SessionStatus": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Connected",
"name": "CONNECTED"
},
{
"value": "Connecting",
"name": "CONNECTING"
},
{
"value": "Disconnected",
"name": "DISCONNECTED"
},
{
"value": "Terminated",
"name": "TERMINATED"
},
{
"value": "Terminating",
"name": "TERMINATING"
},
{
"value": "Failed",
"name": "FAILED"
}
]
}
},
"com.amazonaws.ssm#SessionTarget": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 400
}
}
},
"com.amazonaws.ssm#SeveritySummary": {
"type": "structure",
"members": {
"CriticalCount": {
"target": "com.amazonaws.ssm#ComplianceSummaryCount",
"traits": {
"smithy.api#documentation": "<p>The total number of resources or compliance items that have a severity level of critical.\n Critical severity is determined by the organization that published the compliance items.</p>"
}
},
"HighCount": {
"target": "com.amazonaws.ssm#ComplianceSummaryCount",
"traits": {
"smithy.api#documentation": "<p>The total number of resources or compliance items that have a severity level of high. High\n severity is determined by the organization that published the compliance items.</p>"
}
},
"MediumCount": {
"target": "com.amazonaws.ssm#ComplianceSummaryCount",
"traits": {
"smithy.api#documentation": "<p>The total number of resources or compliance items that have a severity level of medium.\n Medium severity is determined by the organization that published the compliance items.</p>"
}
},
"LowCount": {
"target": "com.amazonaws.ssm#ComplianceSummaryCount",
"traits": {
"smithy.api#documentation": "<p>The total number of resources or compliance items that have a severity level of low. Low\n severity is determined by the organization that published the compliance items.</p>"
}
},
"InformationalCount": {
"target": "com.amazonaws.ssm#ComplianceSummaryCount",
"traits": {
"smithy.api#documentation": "<p>The total number of resources or compliance items that have a severity level of\n informational. Informational severity is determined by the organization that published the\n compliance items.</p>"
}
},
"UnspecifiedCount": {
"target": "com.amazonaws.ssm#ComplianceSummaryCount",
"traits": {
"smithy.api#documentation": "<p>The total number of resources or compliance items that have a severity level of unspecified.\n Unspecified severity is determined by the organization that published the compliance\n items.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The number of managed instances found for each patch severity level defined in the request\n filter.</p>"
}
},
"com.amazonaws.ssm#SharedDocumentVersion": {
"type": "string",
"traits": {
"smithy.api#documentation": "<p>The document version shared with other accounts. You can share <code>Latest</code>,\n <code>Default</code> or <code>All versions</code>.</p>",
"smithy.api#length": {
"min": 0,
"max": 8
},
"smithy.api#pattern": "([$]LATEST|[$]DEFAULT|[$]ALL)"
}
},
"com.amazonaws.ssm#SignalType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Approve",
"name": "APPROVE"
},
{
"value": "Reject",
"name": "REJECT"
},
{
"value": "StartStep",
"name": "START_STEP"
},
{
"value": "StopStep",
"name": "STOP_STEP"
},
{
"value": "Resume",
"name": "RESUME"
}
]
}
},
"com.amazonaws.ssm#SnapshotDownloadUrl": {
"type": "string"
},
"com.amazonaws.ssm#SnapshotId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 36,
"max": 36
},
"smithy.api#pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"
}
},
"com.amazonaws.ssm#StandardErrorContent": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 8000
}
}
},
"com.amazonaws.ssm#StandardOutputContent": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 24000
}
}
},
"com.amazonaws.ssm#StartAssociationsOnce": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#StartAssociationsOnceRequest"
},
"output": {
"target": "com.amazonaws.ssm#StartAssociationsOnceResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociationDoesNotExist"
},
{
"target": "com.amazonaws.ssm#InvalidAssociation"
}
],
"traits": {
"smithy.api#documentation": "<p>Use this API action to run an association immediately and only one time. This action can be\n helpful when troubleshooting associations.</p>"
}
},
"com.amazonaws.ssm#StartAssociationsOnceRequest": {
"type": "structure",
"members": {
"AssociationIds": {
"target": "com.amazonaws.ssm#AssociationIdList",
"traits": {
"smithy.api#documentation": "<p>The association IDs that you want to run immediately and only one time.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#StartAssociationsOnceResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#StartAutomationExecution": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#StartAutomationExecutionRequest"
},
"output": {
"target": "com.amazonaws.ssm#StartAutomationExecutionResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AutomationDefinitionNotFoundException"
},
{
"target": "com.amazonaws.ssm#AutomationDefinitionVersionNotFoundException"
},
{
"target": "com.amazonaws.ssm#AutomationExecutionLimitExceededException"
},
{
"target": "com.amazonaws.ssm#IdempotentParameterMismatch"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidAutomationExecutionParametersException"
},
{
"target": "com.amazonaws.ssm#InvalidTarget"
}
],
"traits": {
"smithy.api#documentation": "<p>Initiates execution of an Automation document.</p>"
}
},
"com.amazonaws.ssm#StartAutomationExecutionRequest": {
"type": "structure",
"members": {
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document to run. This can be a public document or a custom document.\n To run a shared document belonging to another account, specify the document ARN. For more\n information about how to use shared documents, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-using-shared.html\">Using shared SSM documents</a>\n in the <i>AWS Systems Manager User Guide</i>.</p>",
"smithy.api#required": {}
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the Automation document to use for this execution.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>A key-value map of execution parameters, which match the declared parameters in the\n Automation document.</p>"
}
},
"ClientToken": {
"target": "com.amazonaws.ssm#IdempotencyToken",
"traits": {
"smithy.api#documentation": "<p>User-provided idempotency token. The token must be unique, is case insensitive, enforces the\n UUID format, and can't be reused.</p>"
}
},
"Mode": {
"target": "com.amazonaws.ssm#ExecutionMode",
"traits": {
"smithy.api#documentation": "<p>The execution mode of the automation. Valid modes include the following: Auto and\n Interactive. The default mode is Auto.</p>"
}
},
"TargetParameterName": {
"target": "com.amazonaws.ssm#AutomationParameterKey",
"traits": {
"smithy.api#documentation": "<p>The name of the parameter used as the target resource for the rate-controlled execution.\n Required if you specify targets.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>A key-value mapping to target resources. Required if you specify TargetParameterName.</p>"
}
},
"TargetMaps": {
"target": "com.amazonaws.ssm#TargetMaps",
"traits": {
"smithy.api#documentation": "<p>A key-value mapping of document parameters to target resources. Both Targets and TargetMaps\n cannot be specified together.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of targets allowed to run this task in parallel. You can specify a\n number, such as 10, or a percentage, such as 10%. The default value is 10.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The number of errors that are allowed before the system stops running the automation on\n additional targets. You can specify either an absolute number of errors, for example 10, or a\n percentage of the target set, for example 10%. If you specify 3, for example, the system stops\n running the automation when the fourth error is received. If you specify 0, then the system stops\n running the automation on additional targets after the first error result is returned. If you run\n an automation on 50 resources and set max-errors to 10%, then the system stops running the\n automation on additional targets when the sixth error is received.</p>\n <p>Executions that are already running an automation when max-errors is reached are allowed to\n complete, but some of these executions may fail as well. If you need to ensure that there won't\n be more than max-errors failed executions, set max-concurrency to 1 so the executions proceed one\n at a time.</p>"
}
},
"TargetLocations": {
"target": "com.amazonaws.ssm#TargetLocations",
"traits": {
"smithy.api#documentation": "<p>A location is a combination of AWS Regions and/or AWS accounts where you want to run the\n Automation. Use this action to start an Automation in multiple Regions and multiple accounts. For\n more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-automation-multiple-accounts-and-regions.html\">Running Automation workflows in multiple AWS Regions and accounts</a> in the\n <i>AWS Systems Manager User Guide</i>. </p>"
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>Optional metadata that you assign to a resource. You can specify a maximum of five tags for\n an automation. Tags enable you to categorize a resource in different ways, such as by purpose,\n owner, or environment. For example, you might want to tag an automation to identify an\n environment or operating system. In this case, you could specify the following key name/value\n pairs:</p>\n <ul>\n <li>\n <p>\n <code>Key=environment,Value=test</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=OS,Value=Windows</code>\n </p>\n </li>\n </ul>\n <note>\n <p>To add tags to an existing patch baseline, use the <a>AddTagsToResource</a>\n action.</p>\n </note>"
}
}
}
},
"com.amazonaws.ssm#StartAutomationExecutionResult": {
"type": "structure",
"members": {
"AutomationExecutionId": {
"target": "com.amazonaws.ssm#AutomationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The unique ID of a newly scheduled automation execution.</p>"
}
}
}
},
"com.amazonaws.ssm#StartChangeRequestExecution": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#StartChangeRequestExecutionRequest"
},
"output": {
"target": "com.amazonaws.ssm#StartChangeRequestExecutionResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AutomationDefinitionNotApprovedException"
},
{
"target": "com.amazonaws.ssm#AutomationDefinitionNotFoundException"
},
{
"target": "com.amazonaws.ssm#AutomationDefinitionVersionNotFoundException"
},
{
"target": "com.amazonaws.ssm#AutomationExecutionLimitExceededException"
},
{
"target": "com.amazonaws.ssm#IdempotentParameterMismatch"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidAutomationExecutionParametersException"
}
],
"traits": {
"smithy.api#documentation": "<p>Creates a change request for Change Manager. The runbooks (Automation documents) specified in the\n change request run only after all required approvals for the change request have been\n received.</p>"
}
},
"com.amazonaws.ssm#StartChangeRequestExecutionRequest": {
"type": "structure",
"members": {
"ScheduledTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time specified in the change request to run the Automation runbooks.</p>\n <note>\n <p>The Automation runbooks specified for the runbook workflow can't run until all required\n approvals for the change request have been received.</p>\n </note>"
}
},
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the change template document to run during the runbook workflow.</p>",
"smithy.api#required": {}
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the change template document to run during the runbook workflow.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>A key-value map of parameters that match the declared parameters in the change template\n document.</p>"
}
},
"ChangeRequestName": {
"target": "com.amazonaws.ssm#ChangeRequestName",
"traits": {
"smithy.api#documentation": "<p>The name of the change request associated with the runbook workflow to be run.</p>"
}
},
"ClientToken": {
"target": "com.amazonaws.ssm#IdempotencyToken",
"traits": {
"smithy.api#documentation": "<p>The user-provided idempotency token. The token must be unique, is case insensitive, enforces\n the UUID format, and can't be reused.</p>"
}
},
"Runbooks": {
"target": "com.amazonaws.ssm#Runbooks",
"traits": {
"smithy.api#documentation": "<p>Information about the Automation runbooks (Automation documents) that are run during the\n runbook workflow.</p>\n <note>\n <p>The Automation runbooks specified for the runbook workflow can't run until all required\n approvals for the change request have been received.</p>\n </note>",
"smithy.api#required": {}
}
},
"Tags": {
"target": "com.amazonaws.ssm#TagList",
"traits": {
"smithy.api#documentation": "<p>Optional metadata that you assign to a resource. You can specify a maximum of five tags for\n a change request. Tags enable you to categorize a resource in different ways, such as by\n purpose, owner, or environment. For example, you might want to tag a change request to identify\n an environment or target AWS Region. In this case, you could specify the following key-value\n pairs:</p>\n <ul>\n <li>\n <p>\n <code>Key=Environment,Value=Production</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=Region,Value=us-east-2</code>\n </p>\n </li>\n </ul>"
}
},
"ScheduledEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time that the requester expects the runbook workflow related to the change request to\n complete. The time is an estimate only that the requester provides for reviewers.</p>"
}
},
"ChangeDetails": {
"target": "com.amazonaws.ssm#ChangeDetailsValue",
"traits": {
"smithy.api#documentation": "<p>User-provided details about the change. If no details are provided, content specified in the\n <b>Template information</b> section of the associated change template\n is added.</p>"
}
}
}
},
"com.amazonaws.ssm#StartChangeRequestExecutionResult": {
"type": "structure",
"members": {
"AutomationExecutionId": {
"target": "com.amazonaws.ssm#AutomationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The unique ID of a runbook workflow operation. (A runbook workflow is a type of Automation\n operation.) </p>"
}
}
}
},
"com.amazonaws.ssm#StartSession": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#StartSessionRequest"
},
"output": {
"target": "com.amazonaws.ssm#StartSessionResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#TargetNotConnected"
}
],
"traits": {
"smithy.api#documentation": "<p>Initiates a connection to a target (for example, an instance) for a Session Manager session. Returns a\n URL and token that can be used to open a WebSocket connection for sending input and receiving\n outputs.</p>\n <note>\n <p>AWS CLI usage: <code>start-session</code> is an interactive command that requires the Session Manager\n plugin to be installed on the client machine making the call. For information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-working-with-install-plugin.html\">Install\n the Session Manager plugin for the AWS CLI</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n <p>AWS Tools for PowerShell usage: Start-SSMSession is not currently supported by AWS Tools\n for PowerShell on Windows local machines.</p>\n </note>"
}
},
"com.amazonaws.ssm#StartSessionRequest": {
"type": "structure",
"members": {
"Target": {
"target": "com.amazonaws.ssm#SessionTarget",
"traits": {
"smithy.api#documentation": "<p>The instance to connect to for the session.</p>",
"smithy.api#required": {}
}
},
"DocumentName": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the SSM document to define the parameters and plugin settings for the session.\n For example, <code>SSM-SessionManagerRunShell</code>. You can call the <a>GetDocument</a> API to verify the document exists before attempting to start a session.\n If no document name is provided, a shell to the instance is launched by default.</p>"
}
},
"Parameters": {
"target": "com.amazonaws.ssm#SessionManagerParameters",
"traits": {
"smithy.api#documentation": "<p>Reserved for future use.</p>"
}
}
}
},
"com.amazonaws.ssm#StartSessionResponse": {
"type": "structure",
"members": {
"SessionId": {
"target": "com.amazonaws.ssm#SessionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the session.</p>"
}
},
"TokenValue": {
"target": "com.amazonaws.ssm#TokenValue",
"traits": {
"smithy.api#documentation": "<p>An encrypted token value containing session and caller information. Used to authenticate the\n connection to the instance.</p>"
}
},
"StreamUrl": {
"target": "com.amazonaws.ssm#StreamUrl",
"traits": {
"smithy.api#documentation": "<p>A URL back to SSM Agent on the instance that the Session Manager client uses to send commands and\n receive output from the instance. Format: <code>wss://ssmmessages.<b>region</b>.amazonaws.com/v1/data-channel/<b>session-id</b>?stream=(input|output)</code>\n </p>\n <p>\n <b>region</b> represents the Region identifier for an\n\t\t\t\t\t\tAWS Region supported by AWS Systems Manager, such as <code>us-east-2</code> for the US East (Ohio) Region.\n\t\t\t\t\t\tFor a list of supported <b>region</b> values, see the <b>Region</b> column in <a href=\"http://docs.aws.amazon.com/general/latest/gr/ssm.html#ssm_region\">Systems Manager service endpoints</a> in the\n <i>AWS General Reference</i>.</p>\n <p>\n <b>session-id</b> represents the ID of a Session Manager session, such as\n <code>1a2b3c4dEXAMPLE</code>.</p>"
}
}
}
},
"com.amazonaws.ssm#StatusAdditionalInfo": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 1024
}
}
},
"com.amazonaws.ssm#StatusDetails": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 100
}
}
},
"com.amazonaws.ssm#StatusMessage": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.ssm#StatusName": {
"type": "string"
},
"com.amazonaws.ssm#StatusUnchanged": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The updated status is the same as the current status.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#StepExecution": {
"type": "structure",
"members": {
"StepName": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The name of this execution step.</p>"
}
},
"Action": {
"target": "com.amazonaws.ssm#AutomationActionName",
"traits": {
"smithy.api#documentation": "<p>The action this step performs. The action determines the behavior of the step.</p>"
}
},
"TimeoutSeconds": {
"target": "com.amazonaws.ssm#Long",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The timeout seconds of the step.</p>"
}
},
"OnFailure": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The action to take if the step fails. The default value is Abort.</p>"
}
},
"MaxAttempts": {
"target": "com.amazonaws.ssm#Integer",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The maximum number of tries to run the action of the step. The default value is 1.</p>"
}
},
"ExecutionStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>If a step has begun execution, this contains the time the step started. If the step is in\n Pending status, this field is not populated.</p>"
}
},
"ExecutionEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>If a step has finished execution, this contains the time the execution ended. If the step\n has not yet concluded, this field is not populated.</p>"
}
},
"StepStatus": {
"target": "com.amazonaws.ssm#AutomationExecutionStatus",
"traits": {
"smithy.api#documentation": "<p>The execution status for this step.</p>"
}
},
"ResponseCode": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The response code returned by the execution of the step.</p>"
}
},
"Inputs": {
"target": "com.amazonaws.ssm#NormalStringMap",
"traits": {
"smithy.api#documentation": "<p>Fully-resolved values passed into the step before execution.</p>"
}
},
"Outputs": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>Returned values from the execution of the step.</p>"
}
},
"Response": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>A message associated with the response code for an execution.</p>"
}
},
"FailureMessage": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>If a step failed, this message explains why the execution failed.</p>"
}
},
"FailureDetails": {
"target": "com.amazonaws.ssm#FailureDetails",
"traits": {
"smithy.api#documentation": "<p>Information about the Automation failure.</p>"
}
},
"StepExecutionId": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The unique ID of a step execution.</p>"
}
},
"OverriddenParameters": {
"target": "com.amazonaws.ssm#AutomationParameterMap",
"traits": {
"smithy.api#documentation": "<p>A user-specified list of parameters to override when running a step.</p>"
}
},
"IsEnd": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The flag which can be used to end automation no matter whether the step succeeds or\n fails.</p>"
}
},
"NextStep": {
"target": "com.amazonaws.ssm#String",
"traits": {
"smithy.api#documentation": "<p>The next step after the step succeeds.</p>"
}
},
"IsCritical": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The flag which can be used to help decide whether the failure of current step leads to the\n Automation failure.</p>"
}
},
"ValidNextSteps": {
"target": "com.amazonaws.ssm#ValidNextStepList",
"traits": {
"smithy.api#documentation": "<p>Strategies used when step fails, we support Continue and Abort. Abort will fail the\n automation when the step fails. Continue will ignore the failure of current step and allow\n automation to run the next step. With conditional branching, we add step:stepName to support the\n automation to go to another specific step.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets for the step execution.</p>"
}
},
"TargetLocation": {
"target": "com.amazonaws.ssm#TargetLocation",
"traits": {
"smithy.api#documentation": "<p>The combination of AWS Regions and accounts targeted by the current Automation\n execution.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Detailed information about an the execution state of an Automation step.</p>"
}
},
"com.amazonaws.ssm#StepExecutionFilter": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#StepExecutionFilterKey",
"traits": {
"smithy.api#documentation": "<p>One or more keys to limit the results. Valid filter keys include the following: StepName,\n Action, StepExecutionId, StepExecutionStatus, StartTimeBefore, StartTimeAfter.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.ssm#StepExecutionFilterValueList",
"traits": {
"smithy.api#documentation": "<p>The values of the filter key.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>A filter to limit the amount of step execution information returned by the call.</p>"
}
},
"com.amazonaws.ssm#StepExecutionFilterKey": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "StartTimeBefore",
"name": "START_TIME_BEFORE"
},
{
"value": "StartTimeAfter",
"name": "START_TIME_AFTER"
},
{
"value": "StepExecutionStatus",
"name": "STEP_EXECUTION_STATUS"
},
{
"value": "StepExecutionId",
"name": "STEP_EXECUTION_ID"
},
{
"value": "StepName",
"name": "STEP_NAME"
},
{
"value": "Action",
"name": "ACTION"
}
]
}
},
"com.amazonaws.ssm#StepExecutionFilterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#StepExecutionFilter"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 6
}
}
},
"com.amazonaws.ssm#StepExecutionFilterValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 150
}
}
},
"com.amazonaws.ssm#StepExecutionFilterValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#StepExecutionFilterValue"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 10
}
}
},
"com.amazonaws.ssm#StepExecutionList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#StepExecution"
}
},
"com.amazonaws.ssm#StopAutomationExecution": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#StopAutomationExecutionRequest"
},
"output": {
"target": "com.amazonaws.ssm#StopAutomationExecutionResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AutomationExecutionNotFoundException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidAutomationStatusUpdateException"
}
],
"traits": {
"smithy.api#documentation": "<p>Stop an Automation that is currently running.</p>"
}
},
"com.amazonaws.ssm#StopAutomationExecutionRequest": {
"type": "structure",
"members": {
"AutomationExecutionId": {
"target": "com.amazonaws.ssm#AutomationExecutionId",
"traits": {
"smithy.api#documentation": "<p>The execution ID of the Automation to stop.</p>",
"smithy.api#required": {}
}
},
"Type": {
"target": "com.amazonaws.ssm#StopType",
"traits": {
"smithy.api#documentation": "<p>The stop request type. Valid types include the following: Cancel and Complete. The default\n type is Cancel.</p>"
}
}
}
},
"com.amazonaws.ssm#StopAutomationExecutionResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#StopType": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "Complete",
"name": "COMPLETE"
},
{
"value": "Cancel",
"name": "CANCEL"
}
]
}
},
"com.amazonaws.ssm#StreamUrl": {
"type": "string"
},
"com.amazonaws.ssm#String": {
"type": "string"
},
"com.amazonaws.ssm#StringDateTime": {
"type": "string",
"traits": {
"smithy.api#pattern": "^([\\-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d(?!:))?)?(\\17[0-5]\\d([\\.,]\\d)?)?([zZ]|([\\-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$"
}
},
"com.amazonaws.ssm#StringList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#String"
}
},
"com.amazonaws.ssm#SubTypeCountLimitExceededException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The sub-type count exceeded the limit for the inventory type.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#Tag": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#TagKey",
"traits": {
"smithy.api#documentation": "<p>The name of the tag.</p>",
"smithy.api#required": {}
}
},
"Value": {
"target": "com.amazonaws.ssm#TagValue",
"traits": {
"smithy.api#documentation": "<p>The value of the tag.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>Metadata that you assign to your AWS resources. Tags enable you to categorize your resources\n in different ways, for example, by purpose, owner, or environment. In Systems Manager, you can apply tags\n to documents, managed instances, maintenance windows, Parameter Store parameters, and patch\n baselines.</p>"
}
},
"com.amazonaws.ssm#TagKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 128
},
"smithy.api#pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
}
},
"com.amazonaws.ssm#TagList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Tag"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 1000
}
}
},
"com.amazonaws.ssm#TagValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 256
},
"smithy.api#pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
}
},
"com.amazonaws.ssm#Target": {
"type": "structure",
"members": {
"Key": {
"target": "com.amazonaws.ssm#TargetKey",
"traits": {
"smithy.api#documentation": "<p>User-defined criteria for sending commands that target instances that meet the\n criteria.</p>"
}
},
"Values": {
"target": "com.amazonaws.ssm#TargetValues",
"traits": {
"smithy.api#documentation": "<p>User-defined criteria that maps to <code>Key</code>. For example, if you specified\n <code>tag:ServerRole</code>, you could specify <code>value:WebServer</code> to run a command on\n instances that include EC2 tags of <code>ServerRole,WebServer</code>. </p>\n <p>Depending on the type of <code>Target</code>, the maximum number of values for a\n <code>Key</code> might be lower than the global maximum of 50.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An array of search criteria that targets instances using a Key,Value combination that you\n specify.</p>\n <note>\n <p> One or more targets must be specified for maintenance window Run Command-type tasks.\n Depending on the task, targets are optional for other maintenance window task types (Automation,\n AWS Lambda, and AWS Step Functions). For more information about running tasks that do not\n specify targets, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html\">Registering\n maintenance window tasks without targets</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>\n </note>\n <p>Supported formats include the following.</p>\n <ul>\n <li>\n <p>\n <code>Key=InstanceIds,Values=<i>instance-id-1</i>,<i>instance-id-2</i>,<i>instance-id-3</i>\n </code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=tag:<i>my-tag-key</i>,Values=<i>my-tag-value-1</i>,<i>my-tag-value-2</i>\n </code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=tag-key,Values=<i>my-tag-key-1</i>,<i>my-tag-key-2</i>\n </code>\n </p>\n </li>\n <li>\n <p>\n <b>Run Command and Maintenance window targets only</b>:\n <code>Key=resource-groups:Name,Values=<i>resource-group-name</i>\n </code>\n </p>\n </li>\n <li>\n <p>\n <b>Maintenance window targets only</b>:\n <code>Key=resource-groups:ResourceTypeFilters,Values=<i>resource-type-1</i>,<i>resource-type-2</i>\n </code>\n </p>\n </li>\n <li>\n <p>\n <b>Automation targets only</b>:\n <code>Key=ResourceGroup;Values=<i>resource-group-name</i>\n </code>\n </p>\n </li>\n </ul>\n <p>For example:</p>\n <ul>\n <li>\n <p>\n <code>Key=InstanceIds,Values=i-02573cafcfEXAMPLE,i-0471e04240EXAMPLE,i-07782c72faEXAMPLE</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=tag:CostCenter,Values=CostCenter1,CostCenter2,CostCenter3</code>\n </p>\n </li>\n <li>\n <p>\n <code>Key=tag-key,Values=Name,Instance-Type,CostCenter</code>\n </p>\n </li>\n <li>\n <p>\n <b>Run Command and Maintenance window targets only</b>:\n <code>Key=resource-groups:Name,Values=ProductionResourceGroup</code>\n </p>\n <p>This example demonstrates how to target all resources in the resource group <b>ProductionResourceGroup</b> in your maintenance window.</p>\n </li>\n <li>\n <p>\n <b>Maintenance window targets only</b>:\n <code>Key=resource-groups:ResourceTypeFilters,Values=<i>AWS::EC2::INSTANCE</i>,<i>AWS::EC2::VPC</i>\n </code>\n </p>\n <p>This example demonstrates how to target only EC2 instances and VPCs in your maintenance\n window.</p>\n </li>\n <li>\n <p>\n <b>Automation targets only</b>:\n <code>Key=ResourceGroup,Values=MyResourceGroup</code>\n </p>\n </li>\n <li>\n <p>\n <b>State Manager association targets only</b>:\n <code>Key=InstanceIds,Values=<i>*</i>\n </code>\n </p>\n <p>This example demonstrates how to target all managed instances in the AWS Region where the\n association was created.</p>\n </li>\n </ul>\n <p>For more information about how to send commands that target instances using\n <code>Key,Value</code> parameters, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html#send-commands-targeting\">Targeting multiple instances</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"com.amazonaws.ssm#TargetCount": {
"type": "integer"
},
"com.amazonaws.ssm#TargetInUseException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>You specified the <code>Safe</code> option for the DeregisterTargetFromMaintenanceWindow\n operation, but the target is still referenced in a task.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#TargetKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 163
},
"smithy.api#pattern": "^[\\p{L}\\p{Z}\\p{N}_.:/=\\-@]*$|resource-groups:ResourceTypeFilters|resource-groups:Name"
}
},
"com.amazonaws.ssm#TargetLocation": {
"type": "structure",
"members": {
"Accounts": {
"target": "com.amazonaws.ssm#Accounts",
"traits": {
"smithy.api#documentation": "<p>The AWS accounts targeted by the current Automation execution.</p>"
}
},
"Regions": {
"target": "com.amazonaws.ssm#Regions",
"traits": {
"smithy.api#documentation": "<p>The AWS Regions targeted by the current Automation execution.</p>"
}
},
"TargetLocationMaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of AWS accounts and AWS regions allowed to run the Automation\n concurrently.</p>"
}
},
"TargetLocationMaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The maximum number of errors allowed before the system stops queueing additional Automation\n executions for the currently running Automation.</p>"
}
},
"ExecutionRoleName": {
"target": "com.amazonaws.ssm#ExecutionRoleName",
"traits": {
"smithy.api#documentation": "<p>The Automation execution role used by the currently running Automation. If not specified,\n the default value is <code>AWS-SystemsManager-AutomationExecutionRole</code>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>The combination of AWS Regions and accounts targeted by the current Automation\n execution.</p>"
}
},
"com.amazonaws.ssm#TargetLocations": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#TargetLocation"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 100
}
}
},
"com.amazonaws.ssm#TargetMap": {
"type": "map",
"key": {
"target": "com.amazonaws.ssm#TargetMapKey"
},
"value": {
"target": "com.amazonaws.ssm#TargetMapValueList"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 20
}
}
},
"com.amazonaws.ssm#TargetMapKey": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#TargetMapValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 50
}
}
},
"com.amazonaws.ssm#TargetMapValueList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#TargetMapValue"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 25
}
}
},
"com.amazonaws.ssm#TargetMaps": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#TargetMap"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 300
}
}
},
"com.amazonaws.ssm#TargetNotConnected": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The specified target instance for the session is not fully configured for use with Session Manager.\n For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-getting-started.html\">Getting started with\n Session Manager</a> in the <i>AWS Systems Manager User Guide</i>. This error is also returned if you\n attempt to start a session on an instance that is located in a different account or Region</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#TargetParameterList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ParameterValue"
}
},
"com.amazonaws.ssm#TargetType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 200
},
"smithy.api#pattern": "^\\/[\\w\\.\\-\\:\\/]*$"
}
},
"com.amazonaws.ssm#TargetValue": {
"type": "string"
},
"com.amazonaws.ssm#TargetValues": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#TargetValue"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 50
}
}
},
"com.amazonaws.ssm#Targets": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#Target"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 5
}
}
},
"com.amazonaws.ssm#TerminateSession": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#TerminateSessionRequest"
},
"output": {
"target": "com.amazonaws.ssm#TerminateSessionResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Permanently ends a session and closes the data connection between the Session Manager client and\n SSM Agent on the instance. A terminated session cannot be resumed.</p>"
}
},
"com.amazonaws.ssm#TerminateSessionRequest": {
"type": "structure",
"members": {
"SessionId": {
"target": "com.amazonaws.ssm#SessionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the session to terminate.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#TerminateSessionResponse": {
"type": "structure",
"members": {
"SessionId": {
"target": "com.amazonaws.ssm#SessionId",
"traits": {
"smithy.api#documentation": "<p>The ID of the session that has been terminated.</p>"
}
}
}
},
"com.amazonaws.ssm#TimeoutSeconds": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 30,
"max": 2592000
}
}
},
"com.amazonaws.ssm#TokenValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 300
}
}
},
"com.amazonaws.ssm#TooManyTagsError": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The <code>Targets</code> parameter includes too many tags. Remove one or more tags and try\n the command again.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#TooManyUpdates": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>There are concurrent updates for a resource that supports one update at a time.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#TotalCount": {
"type": "integer"
},
"com.amazonaws.ssm#TotalSizeLimitExceededException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The size of inventory data has exceeded the total size limit for the resource.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#UUID": {
"type": "string",
"traits": {
"smithy.api#pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"
}
},
"com.amazonaws.ssm#UnlabelParameterVersion": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UnlabelParameterVersionRequest"
},
"output": {
"target": "com.amazonaws.ssm#UnlabelParameterVersionResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ParameterNotFound"
},
{
"target": "com.amazonaws.ssm#ParameterVersionNotFound"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
}
],
"traits": {
"smithy.api#documentation": "<p>Remove a label or labels from a parameter.</p>"
}
},
"com.amazonaws.ssm#UnlabelParameterVersionRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#PSParameterName",
"traits": {
"smithy.api#documentation": "<p>The parameter name of which you want to delete one or more labels.</p>",
"smithy.api#required": {}
}
},
"ParameterVersion": {
"target": "com.amazonaws.ssm#PSParameterVersion",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The specific version of the parameter which you want to delete one or more labels from. If\n it is not present, the call will fail.</p>",
"smithy.api#required": {}
}
},
"Labels": {
"target": "com.amazonaws.ssm#ParameterLabelList",
"traits": {
"smithy.api#documentation": "<p>One or more labels to delete from the specified parameter version.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#UnlabelParameterVersionResult": {
"type": "structure",
"members": {
"RemovedLabels": {
"target": "com.amazonaws.ssm#ParameterLabelList",
"traits": {
"smithy.api#documentation": "<p>A list of all labels deleted from the parameter.</p>"
}
},
"InvalidLabels": {
"target": "com.amazonaws.ssm#ParameterLabelList",
"traits": {
"smithy.api#documentation": "<p>The labels that are not attached to the given parameter version.</p>"
}
}
}
},
"com.amazonaws.ssm#UnsupportedCalendarException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The calendar entry contained in the specified Systems Manager document is not supported.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#UnsupportedFeatureRequiredException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Microsoft application patching is only available on EC2 instances and advanced instances. To\n patch Microsoft applications on on-premises servers and VMs, you must enable advanced instances.\n For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-managedinstances-advanced.html\">Using the\n advanced-instances tier</a> in the <i>AWS Systems Manager User Guide</i>.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#UnsupportedInventoryItemContextException": {
"type": "structure",
"members": {
"TypeName": {
"target": "com.amazonaws.ssm#InventoryItemTypeName"
},
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The <code>Context</code> attribute that you specified for the <code>InventoryItem</code> is\n not allowed for this inventory type. You can only use the <code>Context</code> attribute with\n inventory types like <code>AWS:ComplianceItem</code>.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#UnsupportedInventorySchemaVersionException": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>Inventory item type schema version has to match supported versions in the service. Check\n output of GetInventorySchema to see the available schema version for each type.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#UnsupportedOperatingSystem": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The operating systems you specified is not supported, or the operation is not supported for\n the operating system.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#UnsupportedParameterType": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The parameter type is not supported.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#UnsupportedPlatformType": {
"type": "structure",
"members": {
"Message": {
"target": "com.amazonaws.ssm#String"
}
},
"traits": {
"smithy.api#documentation": "<p>The document does not support the platform type of the given instance ID(s). For example,\n you sent an document for a Windows instance to a Linux instance.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.ssm#UpdateAssociation": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateAssociationRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateAssociationResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociationDoesNotExist"
},
{
"target": "com.amazonaws.ssm#AssociationVersionLimitExceeded"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidAssociationVersion"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentVersion"
},
{
"target": "com.amazonaws.ssm#InvalidOutputLocation"
},
{
"target": "com.amazonaws.ssm#InvalidParameters"
},
{
"target": "com.amazonaws.ssm#InvalidSchedule"
},
{
"target": "com.amazonaws.ssm#InvalidTarget"
},
{
"target": "com.amazonaws.ssm#InvalidUpdate"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
}
],
"traits": {
"smithy.api#documentation": "<p>Updates an association. You can update the association name and version, the document\n version, schedule, parameters, and Amazon S3 output. </p>\n <p>In order to call this API action, your IAM user account, group, or role must be configured\n with permission to call the <a>DescribeAssociation</a> API action. If you don't have\n permission to call DescribeAssociation, then you receive the following error: <code>An error\n occurred (AccessDeniedException) when calling the UpdateAssociation operation: User:\n <user_arn> is not authorized to perform: ssm:DescribeAssociation on resource:\n <resource_arn></code>\n </p>\n <important>\n <p>When you update an association, the association immediately runs against the specified\n targets.</p>\n </important>"
}
},
"com.amazonaws.ssm#UpdateAssociationRequest": {
"type": "structure",
"members": {
"AssociationId": {
"target": "com.amazonaws.ssm#AssociationId",
"traits": {
"smithy.api#documentation": "<p>The ID of the association you want to update. </p>",
"smithy.api#required": {}
}
},
"Parameters": {
"target": "com.amazonaws.ssm#Parameters",
"traits": {
"smithy.api#documentation": "<p>The parameters you want to update for the association. If you create a parameter using\n Parameter Store, you can reference the parameter using {{ssm:parameter-name}}</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The document version you want update for the association. </p>"
}
},
"ScheduleExpression": {
"target": "com.amazonaws.ssm#ScheduleExpression",
"traits": {
"smithy.api#documentation": "<p>The cron expression used to schedule the association that you want to update.</p>"
}
},
"OutputLocation": {
"target": "com.amazonaws.ssm#InstanceAssociationOutputLocation",
"traits": {
"smithy.api#documentation": "<p>An S3 bucket where you want to store the results of this request.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the SSM document that contains the configuration information for the instance.\n You can specify Command or Automation documents.</p>\n <p>You can specify AWS-predefined documents, documents you created, or a document that is\n shared with you from another account.</p>\n <p>For SSM documents that are shared with you from other AWS accounts, you must specify the\n complete SSM document ARN, in the following format:</p>\n <p>\n <code>arn:aws:ssm:<i>region</i>:<i>account-id</i>:document/<i>document-name</i>\n </code>\n </p>\n <p>For example:</p>\n <p>\n <code>arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document</code>\n </p>\n <p>For AWS-predefined documents and SSM documents you created in your account, you only need to\n specify the document name. For example, <code>AWS-ApplyPatchBaseline</code> or\n <code>My-Document</code>.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets of the association.</p>"
}
},
"AssociationName": {
"target": "com.amazonaws.ssm#AssociationName",
"traits": {
"smithy.api#documentation": "<p>The name of the association that you want to update.</p>"
}
},
"AssociationVersion": {
"target": "com.amazonaws.ssm#AssociationVersion",
"traits": {
"smithy.api#documentation": "<p>This parameter is provided for concurrency control purposes. You must specify the latest\n association version in the service. If you want to ensure that this request succeeds, either\n specify <code>$LATEST</code>, or omit this parameter.</p>"
}
},
"AutomationTargetParameterName": {
"target": "com.amazonaws.ssm#AutomationTargetParameterName",
"traits": {
"smithy.api#documentation": "<p>Specify the target for the association. This target is required for associations that use an\n Automation document and target resources by using rate controls.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The number of errors that are allowed before the system stops sending requests to run the\n association on additional targets. You can specify either an absolute number of errors, for\n example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,\n the system stops sending requests when the fourth error is received. If you specify 0, then the\n system stops sending requests after the first error is returned. If you run an association on 50\n instances and set MaxError to 10%, then the system stops sending the request when the sixth error\n is received.</p>\n <p>Executions that are already running an association when MaxErrors is reached are allowed to\n complete, but some of these executions may fail as well. If you need to ensure that there won't\n be more than max-errors failed executions, set MaxConcurrency to 1 so that executions proceed one\n at a time.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The maximum number of targets allowed to run the association at the same time. You can\n specify a number, for example 10, or a percentage of the target set, for example 10%. The default\n value is 100%, which means all targets run the association at the same time.</p>\n <p>If a new instance starts and attempts to run an association while Systems Manager is running\n MaxConcurrency associations, the association is allowed to run. During the next association\n interval, the new instance will process its association within the limit specified for\n MaxConcurrency.</p>"
}
},
"ComplianceSeverity": {
"target": "com.amazonaws.ssm#AssociationComplianceSeverity",
"traits": {
"smithy.api#documentation": "<p>The severity level to assign to the association.</p>"
}
},
"SyncCompliance": {
"target": "com.amazonaws.ssm#AssociationSyncCompliance",
"traits": {
"smithy.api#documentation": "<p>The mode for generating association compliance. You can specify <code>AUTO</code> or\n <code>MANUAL</code>. In <code>AUTO</code> mode, the system uses the status of the association\n execution to determine the compliance status. If the association execution runs successfully,\n then the association is <code>COMPLIANT</code>. If the association execution doesn't run\n successfully, the association is <code>NON-COMPLIANT</code>.</p>\n <p>In <code>MANUAL</code> mode, you must specify the <code>AssociationId</code> as a parameter\n for the <a>PutComplianceItems</a> API action. In this case, compliance data is not\n managed by State Manager. It is managed by your direct call to the <a>PutComplianceItems</a> API action.</p>\n <p>By default, all associations use <code>AUTO</code> mode.</p>"
}
},
"ApplyOnlyAtCronInterval": {
"target": "com.amazonaws.ssm#ApplyOnlyAtCronInterval",
"traits": {
"smithy.api#documentation": "<p>By default, when you update an association, the system runs it immediately after it is\n updated and then according to the schedule you specified. Specify this option if you don't want\n an association to run immediately after you update it. This parameter is not supported for rate\n expressions.</p>\n <p>Also, if you specified this option when you created the association, you can reset it. To do\n so, specify the <code>no-apply-only-at-cron-interval</code> parameter when you update the\n association from the command line. This parameter forces the association to run immediately after\n updating it and according to the interval specified.</p>"
}
},
"CalendarNames": {
"target": "com.amazonaws.ssm#CalendarNameOrARNList",
"traits": {
"smithy.api#documentation": "<p>The names or Amazon Resource Names (ARNs) of the Systems Manager Change Calendar type\n documents you want to gate your associations under. The associations only run when that Change\n Calendar is open. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar\">AWS Systems Manager Change\n Calendar</a>.</p>"
}
},
"TargetLocations": {
"target": "com.amazonaws.ssm#TargetLocations",
"traits": {
"smithy.api#documentation": "<p>A location is a combination of AWS Regions and AWS accounts where you want to run the\n association. Use this action to update an association in multiple Regions and multiple\n accounts.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateAssociationResult": {
"type": "structure",
"members": {
"AssociationDescription": {
"target": "com.amazonaws.ssm#AssociationDescription",
"traits": {
"smithy.api#documentation": "<p>The description of the association that was updated.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateAssociationStatus": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateAssociationStatusRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateAssociationStatusResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#AssociationDoesNotExist"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
},
{
"target": "com.amazonaws.ssm#StatusUnchanged"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
}
],
"traits": {
"smithy.api#documentation": "<p>Updates the status of the Systems Manager document associated with the specified instance.</p>"
}
},
"com.amazonaws.ssm#UpdateAssociationStatusRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentARN",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document.</p>",
"smithy.api#required": {}
}
},
"InstanceId": {
"target": "com.amazonaws.ssm#InstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the instance.</p>",
"smithy.api#required": {}
}
},
"AssociationStatus": {
"target": "com.amazonaws.ssm#AssociationStatus",
"traits": {
"smithy.api#documentation": "<p>The association status.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#UpdateAssociationStatusResult": {
"type": "structure",
"members": {
"AssociationDescription": {
"target": "com.amazonaws.ssm#AssociationDescription",
"traits": {
"smithy.api#documentation": "<p>Information about the association.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateDocument": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateDocumentRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateDocumentResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DocumentVersionLimitExceeded"
},
{
"target": "com.amazonaws.ssm#DuplicateDocumentContent"
},
{
"target": "com.amazonaws.ssm#DuplicateDocumentVersionName"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentContent"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentOperation"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentSchemaVersion"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentVersion"
},
{
"target": "com.amazonaws.ssm#MaxDocumentSizeExceeded"
}
],
"traits": {
"smithy.api#documentation": "<p>Updates one or more values for an SSM document.</p>"
}
},
"com.amazonaws.ssm#UpdateDocumentDefaultVersion": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateDocumentDefaultVersionRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateDocumentDefaultVersionResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentSchemaVersion"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentVersion"
}
],
"traits": {
"smithy.api#documentation": "<p>Set the default version of a document. </p>"
}
},
"com.amazonaws.ssm#UpdateDocumentDefaultVersionRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of a custom document that you want to set as the default version.</p>",
"smithy.api#required": {}
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersionNumber",
"traits": {
"smithy.api#documentation": "<p>The version of a custom document that you want to set as the default version.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#UpdateDocumentDefaultVersionResult": {
"type": "structure",
"members": {
"Description": {
"target": "com.amazonaws.ssm#DocumentDefaultVersionDescription",
"traits": {
"smithy.api#documentation": "<p>The description of a custom document that you want to set as the default version.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateDocumentMetadata": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateDocumentMetadataRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateDocumentMetadataResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidDocument"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentOperation"
},
{
"target": "com.amazonaws.ssm#InvalidDocumentVersion"
}
],
"traits": {
"smithy.api#documentation": "<p>Updates information related to approval reviews for a specific version of a document.</p>"
}
},
"com.amazonaws.ssm#UpdateDocumentMetadataRequest": {
"type": "structure",
"members": {
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the document for which a version is to be updated.</p>",
"smithy.api#required": {}
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of a document to update.</p>"
}
},
"DocumentReviews": {
"target": "com.amazonaws.ssm#DocumentReviews",
"traits": {
"smithy.api#documentation": "<p>The document review details to update.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#UpdateDocumentMetadataResponse": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#UpdateDocumentRequest": {
"type": "structure",
"members": {
"Content": {
"target": "com.amazonaws.ssm#DocumentContent",
"traits": {
"smithy.api#documentation": "<p>A valid JSON or YAML string.</p>",
"smithy.api#required": {}
}
},
"Attachments": {
"target": "com.amazonaws.ssm#AttachmentsSourceList",
"traits": {
"smithy.api#documentation": "<p>A list of key and value pairs that describe attachments to a version of a document.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#DocumentName",
"traits": {
"smithy.api#documentation": "<p>The name of the Systems Manager document that you want to update.</p>",
"smithy.api#required": {}
}
},
"DisplayName": {
"target": "com.amazonaws.ssm#DocumentDisplayName",
"traits": {
"smithy.api#documentation": "<p>The friendly name of the Systems Manager document that you want to update. This value can differ for\n each version of the document. If you do not specify a value for this parameter in your request,\n the existing value is applied to the new document version.</p>"
}
},
"VersionName": {
"target": "com.amazonaws.ssm#DocumentVersionName",
"traits": {
"smithy.api#documentation": "<p>An optional field specifying the version of the artifact you are updating with the document.\n For example, \"Release 12, Update 6\". This value is unique across all versions of a document, and\n cannot be changed.</p>"
}
},
"DocumentVersion": {
"target": "com.amazonaws.ssm#DocumentVersion",
"traits": {
"smithy.api#documentation": "<p>The version of the document that you want to update. Currently, Systems Manager supports updating only\n the latest version of the document. You can specify the version number of the latest version or\n use the <code>$LATEST</code> variable.</p>"
}
},
"DocumentFormat": {
"target": "com.amazonaws.ssm#DocumentFormat",
"traits": {
"smithy.api#documentation": "<p>Specify the document format for the new document version. Systems Manager supports JSON and YAML\n documents. JSON is the default format.</p>"
}
},
"TargetType": {
"target": "com.amazonaws.ssm#TargetType",
"traits": {
"smithy.api#documentation": "<p>Specify a new target type for the document.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateDocumentResult": {
"type": "structure",
"members": {
"DocumentDescription": {
"target": "com.amazonaws.ssm#DocumentDescription",
"traits": {
"smithy.api#documentation": "<p>A description of the document that was updated.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateMaintenanceWindow": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateMaintenanceWindowRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateMaintenanceWindowResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Updates an existing maintenance window. Only specified parameters are modified.</p>\n <note>\n <p>The value you specify for <code>Duration</code> determines the specific end time for the\n maintenance window based on the time it begins. No maintenance window tasks are permitted to\n start after the resulting endtime minus the number of hours you specify for <code>Cutoff</code>.\n For example, if the maintenance window starts at 3 PM, the duration is three hours, and the\n value you specify for <code>Cutoff</code> is one hour, no maintenance window tasks can start\n after 5 PM.</p>\n </note>"
}
},
"com.amazonaws.ssm#UpdateMaintenanceWindowRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window to update.</p>",
"smithy.api#required": {}
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The name of the maintenance window.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>An optional description for the update request.</p>"
}
},
"StartDate": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The time zone that the scheduled maintenance window executions are based on, in Internet\n Assigned Numbers Authority (IANA) format. For example: \"America/Los_Angeles\", \"UTC\", or\n \"Asia/Seoul\". For more information, see the <a href=\"https://www.iana.org/time-zones\">Time\n Zone Database</a> on the IANA website.</p>"
}
},
"EndDate": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, for when you want the maintenance window to\n become inactive. EndDate allows you to set a date and time in the future when the maintenance\n window will no longer run.</p>"
}
},
"Schedule": {
"target": "com.amazonaws.ssm#MaintenanceWindowSchedule",
"traits": {
"smithy.api#documentation": "<p>The schedule of the maintenance window in the form of a cron or rate expression.</p>"
}
},
"ScheduleTimezone": {
"target": "com.amazonaws.ssm#MaintenanceWindowTimezone",
"traits": {
"smithy.api#documentation": "<p>The time zone that the scheduled maintenance window executions are based on, in Internet\n Assigned Numbers Authority (IANA) format. For example: \"America/Los_Angeles\", \"UTC\", or\n \"Asia/Seoul\". For more information, see the <a href=\"https://www.iana.org/time-zones\">Time\n Zone Database</a> on the IANA website.</p>"
}
},
"ScheduleOffset": {
"target": "com.amazonaws.ssm#MaintenanceWindowOffset",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of days to wait after the date and time specified by a CRON expression before\n running the maintenance window.</p>\n <p>For example, the following cron expression schedules a maintenance window to run the third\n Tuesday of every month at 11:30 PM.</p>\n <p>\n <code>cron(30 23 ? * TUE#3 *)</code>\n </p>\n <p>If the schedule offset is <code>2</code>, the maintenance window won't run until two days\n later.</p>"
}
},
"Duration": {
"target": "com.amazonaws.ssm#MaintenanceWindowDurationHours",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The duration of the maintenance window in hours.</p>"
}
},
"Cutoff": {
"target": "com.amazonaws.ssm#MaintenanceWindowCutoff",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of hours before the end of the maintenance window that Systems Manager stops scheduling new\n tasks for execution.</p>"
}
},
"AllowUnassociatedTargets": {
"target": "com.amazonaws.ssm#MaintenanceWindowAllowUnassociatedTargets",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Whether targets must be registered with the maintenance window before tasks can be defined\n for those targets.</p>"
}
},
"Enabled": {
"target": "com.amazonaws.ssm#MaintenanceWindowEnabled",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Whether the maintenance window is enabled.</p>"
}
},
"Replace": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>If True, then all fields that are required by the CreateMaintenanceWindow action are also\n required for this API request. Optional fields that are not specified are set to null. </p>"
}
}
}
},
"com.amazonaws.ssm#UpdateMaintenanceWindowResult": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the created maintenance window.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The name of the maintenance window.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>An optional description of the update.</p>"
}
},
"StartDate": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled\n to become active. The maintenance window will not run before this specified time.</p>"
}
},
"EndDate": {
"target": "com.amazonaws.ssm#MaintenanceWindowStringDateTime",
"traits": {
"smithy.api#documentation": "<p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled\n to become inactive. The maintenance window will not run after this specified time.</p>"
}
},
"Schedule": {
"target": "com.amazonaws.ssm#MaintenanceWindowSchedule",
"traits": {
"smithy.api#documentation": "<p>The schedule of the maintenance window in the form of a cron or rate expression.</p>"
}
},
"ScheduleTimezone": {
"target": "com.amazonaws.ssm#MaintenanceWindowTimezone",
"traits": {
"smithy.api#documentation": "<p>The time zone that the scheduled maintenance window executions are based on, in Internet\n Assigned Numbers Authority (IANA) format. For example: \"America/Los_Angeles\", \"UTC\", or\n \"Asia/Seoul\". For more information, see the <a href=\"https://www.iana.org/time-zones\">Time\n Zone Database</a> on the IANA website.</p>"
}
},
"ScheduleOffset": {
"target": "com.amazonaws.ssm#MaintenanceWindowOffset",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The number of days to wait to run a maintenance window after the scheduled CRON expression\n date and time.</p>"
}
},
"Duration": {
"target": "com.amazonaws.ssm#MaintenanceWindowDurationHours",
"traits": {
"smithy.api#documentation": "<p>The duration of the maintenance window in hours.</p>"
}
},
"Cutoff": {
"target": "com.amazonaws.ssm#MaintenanceWindowCutoff",
"traits": {
"smithy.api#documentation": "<p>The number of hours before the end of the maintenance window that Systems Manager stops scheduling new\n tasks for execution.</p>"
}
},
"AllowUnassociatedTargets": {
"target": "com.amazonaws.ssm#MaintenanceWindowAllowUnassociatedTargets",
"traits": {
"smithy.api#documentation": "<p>Whether targets must be registered with the maintenance window before tasks can be defined\n for those targets.</p>"
}
},
"Enabled": {
"target": "com.amazonaws.ssm#MaintenanceWindowEnabled",
"traits": {
"smithy.api#documentation": "<p>Whether the maintenance window is enabled.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateMaintenanceWindowTarget": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateMaintenanceWindowTargetRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateMaintenanceWindowTargetResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Modifies the target of an existing maintenance window. You\n can change the following:</p>\n \n <ul>\n <li>\n <p>Name</p>\n </li>\n <li>\n <p>Description</p>\n </li>\n <li>\n <p>Owner</p>\n </li>\n <li>\n <p>IDs for an ID target</p>\n </li>\n <li>\n <p>Tags for a Tag target</p>\n </li>\n <li>\n <p>From any supported tag type to another. The three supported tag types are ID target, Tag\n target, and resource group. For more information, see <a>Target</a>.</p>\n </li>\n </ul>\n <note>\n <p>If a parameter is null, then the corresponding field is not modified.</p>\n </note>"
}
},
"com.amazonaws.ssm#UpdateMaintenanceWindowTargetRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The maintenance window ID with which to modify the target.</p>",
"smithy.api#required": {}
}
},
"WindowTargetId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTargetId",
"traits": {
"smithy.api#documentation": "<p>The target ID to modify.</p>",
"smithy.api#required": {}
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets to add or replace.</p>"
}
},
"OwnerInformation": {
"target": "com.amazonaws.ssm#OwnerInformation",
"traits": {
"smithy.api#documentation": "<p>User-provided value that will be included in any CloudWatch events raised while running\n tasks for these targets in this maintenance window.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>A name for the update.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>An optional description for the update.</p>"
}
},
"Replace": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>If True, then all fields that are required by the RegisterTargetWithMaintenanceWindow action\n are also required for this API request. Optional fields that are not specified are set to\n null.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateMaintenanceWindowTargetResult": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The maintenance window ID specified in the update request.</p>"
}
},
"WindowTargetId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTargetId",
"traits": {
"smithy.api#documentation": "<p>The target ID specified in the update request.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The updated targets.</p>"
}
},
"OwnerInformation": {
"target": "com.amazonaws.ssm#OwnerInformation",
"traits": {
"smithy.api#documentation": "<p>The updated owner.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The updated name.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>The updated description.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateMaintenanceWindowTask": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateMaintenanceWindowTaskRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateMaintenanceWindowTaskResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Modifies a task assigned to a maintenance window. You can't change the task type, but you\n can change the following values:</p>\n <ul>\n <li>\n <p>TaskARN. For example, you can change a RUN_COMMAND task from AWS-RunPowerShellScript to\n AWS-RunShellScript.</p>\n </li>\n <li>\n <p>ServiceRoleArn</p>\n </li>\n <li>\n <p>TaskInvocationParameters</p>\n </li>\n <li>\n <p>Priority</p>\n </li>\n <li>\n <p>MaxConcurrency</p>\n </li>\n <li>\n <p>MaxErrors</p>\n </li>\n </ul>\n <note>\n <p>One or more targets must be specified for maintenance window Run Command-type tasks.\n Depending on the task, targets are optional for other maintenance window task types (Automation,\n AWS Lambda, and AWS Step Functions). For more information about running tasks that do not\n specify targets, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html\">Registering\n maintenance window tasks without targets</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>\n </note>\n <p>If the value for a parameter in <code>UpdateMaintenanceWindowTask</code> is null, then the\n corresponding field is not modified. If you set <code>Replace</code> to true, then all fields\n required by the <a>RegisterTaskWithMaintenanceWindow</a> action are required for this\n request. Optional fields that aren't specified are set to null.</p>\n <important>\n <p>When you update a maintenance window task that has options specified in\n <code>TaskInvocationParameters</code>, you must provide again all the\n <code>TaskInvocationParameters</code> values that you want to retain. The values you do not\n specify again are removed. For example, suppose that when you registered a Run Command task, you\n specified <code>TaskInvocationParameters</code> values for <code>Comment</code>,\n <code>NotificationConfig</code>, and <code>OutputS3BucketName</code>. If you update the\n maintenance window task and specify only a different <code>OutputS3BucketName</code> value, the\n values for <code>Comment</code> and <code>NotificationConfig</code> are removed.</p>\n </important>"
}
},
"com.amazonaws.ssm#UpdateMaintenanceWindowTaskRequest": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The maintenance window ID that contains the task to modify.</p>",
"smithy.api#required": {}
}
},
"WindowTaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskId",
"traits": {
"smithy.api#documentation": "<p>The task ID to modify.</p>",
"smithy.api#required": {}
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The targets (either instances or tags) to modify. Instances are specified using\n Key=instanceids,Values=instanceID_1,instanceID_2. Tags are specified using\n Key=tag_name,Values=tag_value. </p>\n <note>\n <p>One or more targets must be specified for maintenance window Run Command-type tasks.\n Depending on the task, targets are optional for other maintenance window task types (Automation,\n AWS Lambda, and AWS Step Functions). For more information about running tasks that do not\n specify targets, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html\">Registering\n maintenance window tasks without targets</a> in the\n <i>AWS Systems Manager User Guide</i>.</p>\n </note>"
}
},
"TaskArn": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskArn",
"traits": {
"smithy.api#documentation": "<p>The task ARN to modify.</p>"
}
},
"ServiceRoleArn": {
"target": "com.amazonaws.ssm#ServiceRole",
"traits": {
"smithy.api#documentation": "<p>The ARN of the IAM service role for Systems Manager to assume when running a \n maintenance window task. If you do not specify a service role ARN, Systems Manager uses your account's \n service-linked role. If no service-linked role for Systems Manager exists in your account, it is created when you run \n <code>RegisterTaskWithMaintenanceWindow</code>.</p>\n <p>For more information, see the following topics in the in the <i>AWS Systems Manager User Guide</i>:</p>\n <ul>\n <li>\n <p>\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html#slr-permissions\">Using \n service-linked roles for Systems Manager</a> \n </p>\n </li>\n <li>\n <p>\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-maintenance-permissions.html#maintenance-window-tasks-service-role\">Should I use a service-linked role or a custom service role to run maintenance window tasks?\n </a>\n </p>\n </li>\n </ul>"
}
},
"TaskParameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters to modify.</p>\n <note>\n <p>\n <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,\n instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information\n about how Systems Manager handles these options for the supported maintenance window task\n types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>\n <p>The map has the following format:</p>\n <p>Key: string, between 1 and 255 characters</p>\n <p>Value: an array of strings, each string is between 1 and 255 characters</p>"
}
},
"TaskInvocationParameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskInvocationParameters",
"traits": {
"smithy.api#documentation": "<p>The parameters that the task should use during execution. Populate only the fields that\n match the task type. All other fields should be empty.</p>\n <important>\n <p>When you update a maintenance window task that has options specified in\n <code>TaskInvocationParameters</code>, you must provide again all the\n <code>TaskInvocationParameters</code> values that you want to retain. The values you do not\n specify again are removed. For example, suppose that when you registered a Run Command task, you\n specified <code>TaskInvocationParameters</code> values for <code>Comment</code>,\n <code>NotificationConfig</code>, and <code>OutputS3BucketName</code>. If you update the\n maintenance window task and specify only a different <code>OutputS3BucketName</code> value, the\n values for <code>Comment</code> and <code>NotificationConfig</code> are removed.</p>\n </important>"
}
},
"Priority": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskPriority",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>The new task priority to specify. The lower the number, the higher the priority. Tasks that\n have the same priority are scheduled in parallel.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The new <code>MaxConcurrency</code> value you want to specify. <code>MaxConcurrency</code>\n is the number of targets that are allowed to run this task in parallel.</p>\n <note>\n <p>For maintenance window tasks without a target specified, you cannot supply a value for this\n option. Instead, the system inserts a placeholder value of <code>1</code>, which may be reported\n in the response to this command. This value does not affect the running of your task and can be\n ignored.</p>\n </note>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The new <code>MaxErrors</code> value to specify. <code>MaxErrors</code> is the maximum\n number of errors that are allowed before the task stops being scheduled.</p>\n <note>\n <p>For maintenance window tasks without a target specified, you cannot supply a value for this\n option. Instead, the system inserts a placeholder value of <code>1</code>, which may be reported\n in the response to this command. This value does not affect the running of your task and can be\n ignored.</p>\n </note>"
}
},
"LoggingInfo": {
"target": "com.amazonaws.ssm#LoggingInfo",
"traits": {
"smithy.api#documentation": "<p>The new logging location in Amazon S3 to specify.</p>\n <note>\n <p>\n <code>LoggingInfo</code> has been deprecated. To specify an S3 bucket to contain logs, instead use the\n <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.\n For information about how Systems Manager handles these options for the supported maintenance\n window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The new task name to specify.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>The new task description to specify.</p>"
}
},
"Replace": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>If True, then all fields that are required by the RegisterTaskWithMaintenanceWindow action\n are also required for this API request. Optional fields that are not specified are set to\n null.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateMaintenanceWindowTaskResult": {
"type": "structure",
"members": {
"WindowId": {
"target": "com.amazonaws.ssm#MaintenanceWindowId",
"traits": {
"smithy.api#documentation": "<p>The ID of the maintenance window that was updated.</p>"
}
},
"WindowTaskId": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskId",
"traits": {
"smithy.api#documentation": "<p>The task ID of the maintenance window that was updated.</p>"
}
},
"Targets": {
"target": "com.amazonaws.ssm#Targets",
"traits": {
"smithy.api#documentation": "<p>The updated target values.</p>"
}
},
"TaskArn": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskArn",
"traits": {
"smithy.api#documentation": "<p>The updated task ARN value.</p>"
}
},
"ServiceRoleArn": {
"target": "com.amazonaws.ssm#ServiceRole",
"traits": {
"smithy.api#documentation": "<p>The ARN of the IAM service role to use to publish Amazon Simple Notification Service (Amazon SNS) notifications for\n maintenance window Run Command tasks.</p>"
}
},
"TaskParameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskParameters",
"traits": {
"smithy.api#documentation": "<p>The updated parameter values.</p>\n <note>\n <p>\n <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,\n instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information\n about how Systems Manager handles these options for the supported maintenance window task\n types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>"
}
},
"TaskInvocationParameters": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskInvocationParameters",
"traits": {
"smithy.api#documentation": "<p>The updated parameter values.</p>"
}
},
"Priority": {
"target": "com.amazonaws.ssm#MaintenanceWindowTaskPriority",
"traits": {
"smithy.api#documentation": "<p>The updated priority value.</p>"
}
},
"MaxConcurrency": {
"target": "com.amazonaws.ssm#MaxConcurrency",
"traits": {
"smithy.api#documentation": "<p>The updated MaxConcurrency value.</p>"
}
},
"MaxErrors": {
"target": "com.amazonaws.ssm#MaxErrors",
"traits": {
"smithy.api#documentation": "<p>The updated MaxErrors value.</p>"
}
},
"LoggingInfo": {
"target": "com.amazonaws.ssm#LoggingInfo",
"traits": {
"smithy.api#documentation": "<p>The updated logging information in Amazon S3.</p>\n <note>\n <p>\n <code>LoggingInfo</code> has been deprecated. To specify an S3 bucket to contain logs, instead use the\n <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.\n For information about how Systems Manager handles these options for the supported maintenance\n window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>\n </note>"
}
},
"Name": {
"target": "com.amazonaws.ssm#MaintenanceWindowName",
"traits": {
"smithy.api#documentation": "<p>The updated task name.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#MaintenanceWindowDescription",
"traits": {
"smithy.api#documentation": "<p>The updated task description.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateManagedInstanceRole": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateManagedInstanceRoleRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateManagedInstanceRoleResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#InvalidInstanceId"
}
],
"traits": {
"smithy.api#documentation": "<p>Changes the Amazon Identity and Access Management (IAM) role that is assigned to the\n on-premises instance or virtual machines (VM). IAM roles are first assigned to these hybrid\n instances during the activation process. For more information, see <a>CreateActivation</a>.</p>"
}
},
"com.amazonaws.ssm#UpdateManagedInstanceRoleRequest": {
"type": "structure",
"members": {
"InstanceId": {
"target": "com.amazonaws.ssm#ManagedInstanceId",
"traits": {
"smithy.api#documentation": "<p>The ID of the managed instance where you want to update the role.</p>",
"smithy.api#required": {}
}
},
"IamRole": {
"target": "com.amazonaws.ssm#IamRole",
"traits": {
"smithy.api#documentation": "<p>The IAM role you want to assign or change.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#UpdateManagedInstanceRoleResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#UpdateOpsItem": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateOpsItemRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateOpsItemResponse"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsItemAlreadyExistsException"
},
{
"target": "com.amazonaws.ssm#OpsItemInvalidParameterException"
},
{
"target": "com.amazonaws.ssm#OpsItemLimitExceededException"
},
{
"target": "com.amazonaws.ssm#OpsItemNotFoundException"
}
],
"traits": {
"smithy.api#documentation": "<p>Edit or change an OpsItem. You must have permission in AWS Identity and Access Management\n (IAM) to update an OpsItem. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html\">Getting started with\n OpsCenter</a> in the <i>AWS Systems Manager User Guide</i>.</p>\n <p>Operations engineers and IT professionals use OpsCenter to view, investigate, and remediate\n operational issues impacting the performance and health of their AWS resources. For more\n information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html\">AWS Systems Manager OpsCenter</a> in the\n <i>AWS Systems Manager User Guide</i>. </p>"
}
},
"com.amazonaws.ssm#UpdateOpsItemRequest": {
"type": "structure",
"members": {
"Description": {
"target": "com.amazonaws.ssm#OpsItemDescription",
"traits": {
"smithy.api#documentation": "<p>Update the information about the OpsItem. Provide enough information so that users reading\n this OpsItem for the first time understand the issue. </p>"
}
},
"OperationalData": {
"target": "com.amazonaws.ssm#OpsItemOperationalData",
"traits": {
"smithy.api#documentation": "<p>Add new keys or edit existing key-value pairs of the OperationalData map in the OpsItem\n object.</p>\n <p>Operational data is custom data that provides useful reference details about the OpsItem.\n For example, you can specify log files, error strings, license keys, troubleshooting tips, or\n other relevant data. You enter operational data as key-value pairs. The key has a maximum length\n of 128 characters. The value has a maximum size of 20 KB.</p>\n <important>\n <p>Operational data keys <i>can't</i> begin with the following: amazon, aws,\n amzn, ssm, /amazon, /aws, /amzn, /ssm.</p>\n </important>\n <p>You can choose to make the data searchable by other users in the account or you can restrict\n search access. Searchable data means that all users with access to the OpsItem Overview page (as\n provided by the <a>DescribeOpsItems</a> API action) can view and search on the\n specified data. Operational data that is not searchable is only viewable by users who have access\n to the OpsItem (as provided by the <a>GetOpsItem</a> API action).</p>\n <p>Use the <code>/aws/resources</code> key in OperationalData to specify a related resource in\n the request. Use the <code>/aws/automations</code> key in OperationalData to associate an\n Automation runbook with the OpsItem. To view AWS CLI example commands that use these keys, see\n <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems\">Creating OpsItems manually</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"OperationalDataToDelete": {
"target": "com.amazonaws.ssm#OpsItemOpsDataKeysList",
"traits": {
"smithy.api#documentation": "<p>Keys that you want to remove from the OperationalData map.</p>"
}
},
"Notifications": {
"target": "com.amazonaws.ssm#OpsItemNotifications",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an SNS topic where notifications are sent when this\n OpsItem is edited or changed.</p>"
}
},
"Priority": {
"target": "com.amazonaws.ssm#OpsItemPriority",
"traits": {
"smithy.api#documentation": "<p>The importance of this OpsItem in relation to other OpsItems in the system.</p>"
}
},
"RelatedOpsItems": {
"target": "com.amazonaws.ssm#RelatedOpsItems",
"traits": {
"smithy.api#documentation": "<p>One or more OpsItems that share something in common with the current OpsItems. For example,\n related OpsItems can include OpsItems with similar error messages, impacted resources, or\n statuses for the impacted resource.</p>"
}
},
"Status": {
"target": "com.amazonaws.ssm#OpsItemStatus",
"traits": {
"smithy.api#documentation": "<p>The OpsItem status. Status can be <code>Open</code>, <code>In Progress</code>, or\n <code>Resolved</code>. For more information, see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-working-with-OpsItems.html#OpsCenter-working-with-OpsItems-editing-details\">Editing OpsItem details</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"OpsItemId": {
"target": "com.amazonaws.ssm#OpsItemId",
"traits": {
"smithy.api#documentation": "<p>The ID of the OpsItem.</p>",
"smithy.api#required": {}
}
},
"Title": {
"target": "com.amazonaws.ssm#OpsItemTitle",
"traits": {
"smithy.api#documentation": "<p>A short heading that describes the nature of the OpsItem and the impacted resource.</p>"
}
},
"Category": {
"target": "com.amazonaws.ssm#OpsItemCategory",
"traits": {
"smithy.api#documentation": "<p>Specify a new category for an OpsItem.</p>"
}
},
"Severity": {
"target": "com.amazonaws.ssm#OpsItemSeverity",
"traits": {
"smithy.api#documentation": "<p>Specify a new severity for an OpsItem.</p>"
}
},
"ActualStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time a runbook workflow started. Currently reported only for the OpsItem type\n <code>/aws/changerequest</code>.</p>"
}
},
"ActualEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time a runbook workflow ended. Currently reported only for the OpsItem type\n <code>/aws/changerequest</code>.</p>"
}
},
"PlannedStartTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time specified in a change request for a runbook workflow to start. Currently supported\n only for the OpsItem type <code>/aws/changerequest</code>.</p>"
}
},
"PlannedEndTime": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The time specified in a change request for a runbook workflow to end. Currently supported\n only for the OpsItem type <code>/aws/changerequest</code>.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateOpsItemResponse": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#UpdateOpsMetadata": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateOpsMetadataRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateOpsMetadataResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#OpsMetadataInvalidArgumentException"
},
{
"target": "com.amazonaws.ssm#OpsMetadataKeyLimitExceededException"
},
{
"target": "com.amazonaws.ssm#OpsMetadataNotFoundException"
},
{
"target": "com.amazonaws.ssm#OpsMetadataTooManyUpdatesException"
}
],
"traits": {
"smithy.api#documentation": "<p>Systems Manager calls this API action when you edit OpsMetadata in Application Manager.</p>"
}
},
"com.amazonaws.ssm#UpdateOpsMetadataRequest": {
"type": "structure",
"members": {
"OpsMetadataArn": {
"target": "com.amazonaws.ssm#OpsMetadataArn",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resoure Name (ARN) of the OpsMetadata Object to update.</p>",
"smithy.api#required": {}
}
},
"MetadataToUpdate": {
"target": "com.amazonaws.ssm#MetadataMap",
"traits": {
"smithy.api#documentation": "<p>Metadata to add to an OpsMetadata object.</p>"
}
},
"KeysToDelete": {
"target": "com.amazonaws.ssm#MetadataKeysToDeleteList",
"traits": {
"smithy.api#documentation": "<p>The metadata keys to delete from the OpsMetadata object. </p>"
}
}
}
},
"com.amazonaws.ssm#UpdateOpsMetadataResult": {
"type": "structure",
"members": {
"OpsMetadataArn": {
"target": "com.amazonaws.ssm#OpsMetadataArn",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the OpsMetadata Object that was updated.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdatePatchBaseline": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdatePatchBaselineRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdatePatchBaselineResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#DoesNotExistException"
},
{
"target": "com.amazonaws.ssm#InternalServerError"
}
],
"traits": {
"smithy.api#documentation": "<p>Modifies an existing patch baseline. Fields not specified in the request are left\n unchanged.</p>\n <note>\n <p>For information about valid key and value pairs in <code>PatchFilters</code> for each\n supported operating system type, see <a href=\"http://docs.aws.amazon.com/systems-manager/latest/APIReference/API_PatchFilter.html\">PatchFilter</a>.</p>\n </note>"
}
},
"com.amazonaws.ssm#UpdatePatchBaselineRequest": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the patch baseline to update.</p>",
"smithy.api#required": {}
}
},
"Name": {
"target": "com.amazonaws.ssm#BaselineName",
"traits": {
"smithy.api#documentation": "<p>The name of the patch baseline.</p>"
}
},
"GlobalFilters": {
"target": "com.amazonaws.ssm#PatchFilterGroup",
"traits": {
"smithy.api#documentation": "<p>A set of global filters used to include patches in the baseline.</p>"
}
},
"ApprovalRules": {
"target": "com.amazonaws.ssm#PatchRuleGroup",
"traits": {
"smithy.api#documentation": "<p>A set of rules used to include patches in the baseline.</p>"
}
},
"ApprovedPatches": {
"target": "com.amazonaws.ssm#PatchIdList",
"traits": {
"smithy.api#documentation": "<p>A list of explicitly approved patches for the baseline.</p>\n <p>For information about accepted formats for lists of approved patches and rejected patches,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-approved-rejected-package-name-formats.html\">About\n package name formats for approved and rejected patch lists</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"ApprovedPatchesComplianceLevel": {
"target": "com.amazonaws.ssm#PatchComplianceLevel",
"traits": {
"smithy.api#documentation": "<p>Assigns a new compliance severity level to an existing patch baseline.</p>"
}
},
"ApprovedPatchesEnableNonSecurity": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Indicates whether the list of approved patches includes non-security updates that should be\n applied to the instances. The default value is 'false'. Applies to Linux instances only.</p>"
}
},
"RejectedPatches": {
"target": "com.amazonaws.ssm#PatchIdList",
"traits": {
"smithy.api#documentation": "<p>A list of explicitly rejected patches for the baseline.</p>\n <p>For information about accepted formats for lists of approved patches and rejected patches,\n see <a href=\"https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-approved-rejected-package-name-formats.html\">About\n package name formats for approved and rejected patch lists</a> in the <i>AWS Systems Manager User Guide</i>.</p>"
}
},
"RejectedPatchesAction": {
"target": "com.amazonaws.ssm#PatchAction",
"traits": {
"smithy.api#documentation": "<p>The action for Patch Manager to take on patches included in the RejectedPackages\n list.</p>\n <ul>\n <li>\n <p>\n <b>ALLOW_AS_DEPENDENCY</b>: A package in the Rejected patches\n list is installed only if it is a dependency of another package. It is considered compliant\n with the patch baseline, and its status is reported as <i>InstalledOther</i>.\n This is the default action if no option is specified.</p>\n </li>\n <li>\n <p>\n <b>BLOCK</b>: Packages in the RejectedPatches list, and packages\n that include them as dependencies, are not installed under any circumstances. If a package was\n installed before it was added to the Rejected patches list, it is considered non-compliant with\n the patch baseline, and its status is reported as\n <i>InstalledRejected</i>.</p>\n </li>\n </ul>"
}
},
"Description": {
"target": "com.amazonaws.ssm#BaselineDescription",
"traits": {
"smithy.api#documentation": "<p>A description of the patch baseline.</p>"
}
},
"Sources": {
"target": "com.amazonaws.ssm#PatchSourceList",
"traits": {
"smithy.api#documentation": "<p>Information about the patches to use to update the instances, including target operating\n systems and source repositories. Applies to Linux instances only.</p>"
}
},
"Replace": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>If True, then all fields that are required by the CreatePatchBaseline action are also\n required for this API request. Optional fields that are not specified are set to null.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdatePatchBaselineResult": {
"type": "structure",
"members": {
"BaselineId": {
"target": "com.amazonaws.ssm#BaselineId",
"traits": {
"smithy.api#documentation": "<p>The ID of the deleted patch baseline.</p>"
}
},
"Name": {
"target": "com.amazonaws.ssm#BaselineName",
"traits": {
"smithy.api#documentation": "<p>The name of the patch baseline.</p>"
}
},
"OperatingSystem": {
"target": "com.amazonaws.ssm#OperatingSystem",
"traits": {
"smithy.api#documentation": "<p>The operating system rule used by the updated patch baseline.</p>"
}
},
"GlobalFilters": {
"target": "com.amazonaws.ssm#PatchFilterGroup",
"traits": {
"smithy.api#documentation": "<p>A set of global filters used to exclude patches from the baseline.</p>"
}
},
"ApprovalRules": {
"target": "com.amazonaws.ssm#PatchRuleGroup",
"traits": {
"smithy.api#documentation": "<p>A set of rules used to include patches in the baseline.</p>"
}
},
"ApprovedPatches": {
"target": "com.amazonaws.ssm#PatchIdList",
"traits": {
"smithy.api#documentation": "<p>A list of explicitly approved patches for the baseline.</p>"
}
},
"ApprovedPatchesComplianceLevel": {
"target": "com.amazonaws.ssm#PatchComplianceLevel",
"traits": {
"smithy.api#documentation": "<p>The compliance severity level assigned to the patch baseline after the update\n completed.</p>"
}
},
"ApprovedPatchesEnableNonSecurity": {
"target": "com.amazonaws.ssm#Boolean",
"traits": {
"smithy.api#box": {},
"smithy.api#documentation": "<p>Indicates whether the list of approved patches includes non-security updates that should be\n applied to the instances. The default value is 'false'. Applies to Linux instances only.</p>"
}
},
"RejectedPatches": {
"target": "com.amazonaws.ssm#PatchIdList",
"traits": {
"smithy.api#documentation": "<p>A list of explicitly rejected patches for the baseline.</p>"
}
},
"RejectedPatchesAction": {
"target": "com.amazonaws.ssm#PatchAction",
"traits": {
"smithy.api#documentation": "<p>The action specified to take on patches included in the RejectedPatches list. A patch can be\n allowed only if it is a dependency of another package, or blocked entirely along with packages\n that include it as a dependency.</p>"
}
},
"CreatedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date when the patch baseline was created.</p>"
}
},
"ModifiedDate": {
"target": "com.amazonaws.ssm#DateTime",
"traits": {
"smithy.api#documentation": "<p>The date when the patch baseline was last modified.</p>"
}
},
"Description": {
"target": "com.amazonaws.ssm#BaselineDescription",
"traits": {
"smithy.api#documentation": "<p>A description of the Patch Baseline.</p>"
}
},
"Sources": {
"target": "com.amazonaws.ssm#PatchSourceList",
"traits": {
"smithy.api#documentation": "<p>Information about the patches to use to update the instances, including target operating\n systems and source repositories. Applies to Linux instances only.</p>"
}
}
}
},
"com.amazonaws.ssm#UpdateResourceDataSync": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateResourceDataSyncRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateResourceDataSyncResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ResourceDataSyncConflictException"
},
{
"target": "com.amazonaws.ssm#ResourceDataSyncInvalidConfigurationException"
},
{
"target": "com.amazonaws.ssm#ResourceDataSyncNotFoundException"
}
],
"traits": {
"smithy.api#documentation": "<p>Update a resource data sync. After you create a resource data sync for a Region, you can't\n change the account options for that sync. For example, if you create a sync in the us-east-2\n (Ohio) Region and you choose the Include only the current account option, you can't edit that\n sync later and choose the Include all accounts from my AWS Organizations configuration option. Instead,\n you must delete the first resource data sync, and create a new one.</p>\n <note>\n <p>This API action only supports a resource data sync that was created with a SyncFromSource\n <code>SyncType</code>.</p>\n </note>"
}
},
"com.amazonaws.ssm#UpdateResourceDataSyncRequest": {
"type": "structure",
"members": {
"SyncName": {
"target": "com.amazonaws.ssm#ResourceDataSyncName",
"traits": {
"smithy.api#documentation": "<p>The name of the resource data sync you want to update.</p>",
"smithy.api#required": {}
}
},
"SyncType": {
"target": "com.amazonaws.ssm#ResourceDataSyncType",
"traits": {
"smithy.api#documentation": "<p>The type of resource data sync. The supported <code>SyncType</code> is\n SyncFromSource.</p>",
"smithy.api#required": {}
}
},
"SyncSource": {
"target": "com.amazonaws.ssm#ResourceDataSyncSource",
"traits": {
"smithy.api#documentation": "<p>Specify information about the data sources to synchronize.</p>",
"smithy.api#required": {}
}
}
}
},
"com.amazonaws.ssm#UpdateResourceDataSyncResult": {
"type": "structure",
"members": {}
},
"com.amazonaws.ssm#UpdateServiceSetting": {
"type": "operation",
"input": {
"target": "com.amazonaws.ssm#UpdateServiceSettingRequest"
},
"output": {
"target": "com.amazonaws.ssm#UpdateServiceSettingResult"
},
"errors": [
{
"target": "com.amazonaws.ssm#InternalServerError"
},
{
"target": "com.amazonaws.ssm#ServiceSettingNotFound"
},
{
"target": "com.amazonaws.ssm#TooManyUpdates"
}
],
"traits": {
"smithy.api#documentation": "<p>\n <code>ServiceSetting</code> is an account-level setting for an AWS service. This setting\n defines how a user interacts with or uses a service or a feature of a service. For example, if an\n AWS service charges money to the account based on feature or service usage, then the AWS service\n team might create a default setting of \"false\". This means the user can't use this feature unless\n they change the setting to \"true\" and intentionally opt in for a paid feature.</p>\n <p>Services map a <code>SettingId</code> object to a setting value. AWS services teams define\n the default value for a <code>SettingId</code>. You can't create a new <code>SettingId</code>,\n but you can overwrite the default value if you have the <code>ssm:UpdateServiceSetting</code>\n permission for the setting. Use the <a>GetServiceSetting</a> API action to view the\n current value. Or, use the <a>ResetServiceSetting</a> to change the value back to the\n original value defined by the AWS service team.</p>\n <p>Update the service setting for the account. </p>"
}
},
"com.amazonaws.ssm#UpdateServiceSettingRequest": {
"type": "structure",
"members": {
"SettingId": {
"target": "com.amazonaws.ssm#ServiceSettingId",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the service setting to reset. For example,\n <code>arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled</code>.\n The setting ID can be one of the following.</p>\n <ul>\n <li>\n <p>\n <code>/ssm/automation/customer-script-log-destination</code>\n </p>\n </li>\n <li>\n <p>\n <code>/ssm/automation/customer-script-log-group-name</code>\n </p>\n </li>\n <li>\n <p>\n <code>/ssm/parameter-store/default-parameter-tier</code>\n </p>\n </li>\n <li>\n <p>\n <code>/ssm/parameter-store/high-throughput-enabled</code>\n </p>\n </li>\n <li>\n <p>\n <code>/ssm/managed-instance/activation-tier</code>\n </p>\n </li>\n </ul>",
"smithy.api#required": {}
}
},
"SettingValue": {
"target": "com.amazonaws.ssm#ServiceSettingValue",
"traits": {
"smithy.api#documentation": "<p>The new value to specify for the service setting. For the\n <code>/ssm/parameter-store/default-parameter-tier</code> setting ID, the setting value can be\n one of the following.</p>\n <ul>\n <li>\n <p>Standard</p>\n </li>\n <li>\n <p>Advanced</p>\n </li>\n <li>\n <p>Intelligent-Tiering</p>\n </li>\n </ul>\n <p>For the <code>/ssm/parameter-store/high-throughput-enabled</code>, and\n <code>/ssm/managed-instance/activation-tier</code> setting IDs, the setting value can be true or\n false.</p>\n <p>For the <code>/ssm/automation/customer-script-log-destination</code> setting ID, the setting\n value can be CloudWatch.</p>\n <p>For the <code>/ssm/automation/customer-script-log-group-name</code> setting ID, the setting\n value can be the name of a CloudWatch Logs log group.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>The request body of the UpdateServiceSetting API action.</p>"
}
},
"com.amazonaws.ssm#UpdateServiceSettingResult": {
"type": "structure",
"members": {},
"traits": {
"smithy.api#documentation": "<p>The result body of the UpdateServiceSetting API action.</p>"
}
},
"com.amazonaws.ssm#Url": {
"type": "string"
},
"com.amazonaws.ssm#ValidNextStep": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 65535
}
}
},
"com.amazonaws.ssm#ValidNextStepList": {
"type": "list",
"member": {
"target": "com.amazonaws.ssm#ValidNextStep"
}
},
"com.amazonaws.ssm#Version": {
"type": "string",
"traits": {
"smithy.api#pattern": "^[0-9]{1,6}(\\.[0-9]{1,6}){2,3}$"
}
}
}
}