terraform/vendor/github.com/aws/aws-sdk-go/service/ssm/api.go

20631 lines
693 KiB
Go
Raw Normal View History

// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
2016-12-02 15:37:53 +01:00
// Package ssm provides a client for Amazon Simple Systems Manager (SSM).
package ssm
import (
"fmt"
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opAddTagsToResource = "AddTagsToResource"
// AddTagsToResourceRequest generates a "aws/request.Request" representing the
// client's request for the AddTagsToResource operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See AddTagsToResource for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the AddTagsToResource method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the AddTagsToResourceRequest method.
// req, resp := client.AddTagsToResourceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AddTagsToResource
func (c *SSM) AddTagsToResourceRequest(input *AddTagsToResourceInput) (req *request.Request, output *AddTagsToResourceOutput) {
op := &request.Operation{
Name: opAddTagsToResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &AddTagsToResourceInput{}
}
output = &AddTagsToResourceOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// AddTagsToResource API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Adds or overwrites one or more tags for the specified resource. Tags are
// metadata that you assign to your managed instances. Tags enable you to categorize
// your managed instances in different ways, for example, by purpose, owner,
// or environment. Each tag consists of a key and an optional value, both of
// which you define. For example, you could define a set of tags for your account's
// managed instances that helps you track each instance's owner and stack level.
// For example: Key=Owner and Value=DbAdmin, SysAdmin, or Dev. Or Key=Stack
// and Value=Production, Pre-Production, or Test. Each resource can have a maximum
// of 10 tags.
//
2016-11-19 19:41:01 +01:00
// We recommend that you devise a set of tag keys that meets your needs for
// each resource type. Using a consistent set of tag keys makes it easier for
// you to manage your resources. You can search and filter the resources based
// on the tags you add. Tags don't have any semantic meaning to Amazon EC2 and
// are interpreted strictly as a string of characters.
//
// For more information about tags, see Tagging Your Amazon EC2 Resources (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html)
// in the Amazon EC2 User Guide.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
2016-10-17 23:21:08 +02:00
// API operation AddTagsToResource for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInvalidResourceType "InvalidResourceType"
2016-10-17 23:21:08 +02:00
// The resource type is not valid. If you are attempting to tag an instance,
// the instance must be a registered, managed instance.
//
// * ErrCodeInvalidResourceId "InvalidResourceId"
2016-10-17 23:21:08 +02:00
// The resource ID is not valid. Verify that you entered the correct ID and
// try again.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeTooManyTagsError "TooManyTagsError"
2016-12-02 15:37:53 +01:00
// The Targets parameter includes too many tags. Remove one or more tags and
// try the command again.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AddTagsToResource
func (c *SSM) AddTagsToResource(input *AddTagsToResourceInput) (*AddTagsToResourceOutput, error) {
req, out := c.AddTagsToResourceRequest(input)
err := req.Send()
return out, err
}
const opCancelCommand = "CancelCommand"
// CancelCommandRequest generates a "aws/request.Request" representing the
// client's request for the CancelCommand operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CancelCommand for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CancelCommand method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CancelCommandRequest method.
// req, resp := client.CancelCommandRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CancelCommand
func (c *SSM) CancelCommandRequest(input *CancelCommandInput) (req *request.Request, output *CancelCommandOutput) {
op := &request.Operation{
Name: opCancelCommand,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CancelCommandInput{}
}
output = &CancelCommandOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// CancelCommand API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Attempts to cancel the command specified by the Command ID. There is no guarantee
// that the command will be terminated and the underlying process stopped.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
2016-10-17 23:21:08 +02:00
// API operation CancelCommand for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidCommandId "InvalidCommandId"
2016-10-17 23:21:08 +02:00
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
2016-12-02 15:37:53 +01:00
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
2016-10-17 23:21:08 +02:00
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeDuplicateInstanceId "DuplicateInstanceId"
2016-10-17 23:21:08 +02:00
// You cannot specify an instance ID in more than one association.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CancelCommand
func (c *SSM) CancelCommand(input *CancelCommandInput) (*CancelCommandOutput, error) {
req, out := c.CancelCommandRequest(input)
err := req.Send()
return out, err
}
const opCreateActivation = "CreateActivation"
// CreateActivationRequest generates a "aws/request.Request" representing the
// client's request for the CreateActivation operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CreateActivation for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreateActivation method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreateActivationRequest method.
// req, resp := client.CreateActivationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateActivation
func (c *SSM) CreateActivationRequest(input *CreateActivationInput) (req *request.Request, output *CreateActivationOutput) {
op := &request.Operation{
Name: opCreateActivation,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateActivationInput{}
}
output = &CreateActivationOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// CreateActivation API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Registers your on-premises server or virtual machine with Amazon EC2 so that
// you can manage these resources using Run Command. An on-premises server or
// virtual machine that has been registered with EC2 is called a managed instance.
// For more information about activations, see Setting Up Managed Instances
// (Linux) (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/managed-instances.html)
// or Setting Up Managed Instances (Windows) (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/managed-instances.html)
// in the Amazon EC2 User Guide.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
2016-10-17 23:21:08 +02:00
// API operation CreateActivation for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateActivation
func (c *SSM) CreateActivation(input *CreateActivationInput) (*CreateActivationOutput, error) {
req, out := c.CreateActivationRequest(input)
err := req.Send()
return out, err
}
const opCreateAssociation = "CreateAssociation"
// CreateAssociationRequest generates a "aws/request.Request" representing the
// client's request for the CreateAssociation operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CreateAssociation for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreateAssociation method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreateAssociationRequest method.
// req, resp := client.CreateAssociationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociation
func (c *SSM) CreateAssociationRequest(input *CreateAssociationInput) (req *request.Request, output *CreateAssociationOutput) {
op := &request.Operation{
Name: opCreateAssociation,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateAssociationInput{}
}
output = &CreateAssociationOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// CreateAssociation API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Associates the specified SSM document with the specified instances or targets.
//
2016-12-02 15:37:53 +01:00
// When you associate an SSM document with one or more instances using instance
// IDs or tags, the SSM agent running on the instance processes the document
// and configures the instance as specified.
//
// If you associate a document with an instance that already has an associated
// document, the system throws the AssociationAlreadyExists exception.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
2016-10-17 23:21:08 +02:00
// API operation CreateAssociation for usage and error information.
//
// Returned Error Codes:
// * ErrCodeAssociationAlreadyExists "AssociationAlreadyExists"
2016-10-17 23:21:08 +02:00
// The specified association already exists.
//
// * ErrCodeAssociationLimitExceeded "AssociationLimitExceeded"
2016-10-17 23:21:08 +02:00
// You can have at most 2,000 active associations.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidDocument "InvalidDocument"
2016-10-17 23:21:08 +02:00
// The specified document does not exist.
//
// * ErrCodeInvalidDocumentVersion "InvalidDocumentVersion"
2016-12-02 15:37:53 +01:00
// The document version is not valid or does not exist.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
2016-12-02 15:37:53 +01:00
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
2016-10-17 23:21:08 +02:00
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeUnsupportedPlatformType "UnsupportedPlatformType"
2016-10-17 23:21:08 +02:00
// The document does not support the platform type of the given instance ID(s).
// For example, you sent an SSM document for a Windows instance to a Linux instance.
//
// * ErrCodeInvalidOutputLocation "InvalidOutputLocation"
2016-12-02 15:37:53 +01:00
// The output location is not valid or does not exist.
//
// * ErrCodeInvalidParameters "InvalidParameters"
2016-10-17 23:21:08 +02:00
// You must specify values for all required parameters in the SSM document.
// You can only supply values to parameters defined in the SSM document.
//
// * ErrCodeInvalidTarget "InvalidTarget"
2016-12-02 15:37:53 +01:00
// The target is not valid or does not exist. It might not be configured for
// EC2 Systems Manager or you might not have permission to perform the operation.
//
// * ErrCodeInvalidSchedule "InvalidSchedule"
2016-12-02 15:37:53 +01:00
// The schedule is invalid. Verify your cron or rate expression and try again.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociation
func (c *SSM) CreateAssociation(input *CreateAssociationInput) (*CreateAssociationOutput, error) {
req, out := c.CreateAssociationRequest(input)
err := req.Send()
return out, err
}
const opCreateAssociationBatch = "CreateAssociationBatch"
// CreateAssociationBatchRequest generates a "aws/request.Request" representing the
// client's request for the CreateAssociationBatch operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CreateAssociationBatch for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreateAssociationBatch method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreateAssociationBatchRequest method.
// req, resp := client.CreateAssociationBatchRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatch
func (c *SSM) CreateAssociationBatchRequest(input *CreateAssociationBatchInput) (req *request.Request, output *CreateAssociationBatchOutput) {
op := &request.Operation{
Name: opCreateAssociationBatch,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateAssociationBatchInput{}
}
output = &CreateAssociationBatchOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// CreateAssociationBatch API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Associates the specified SSM document with the specified instances or targets.
//
2016-12-02 15:37:53 +01:00
// When you associate an SSM document with one or more instances using instance
// IDs or tags, the SSM agent running on the instance processes the document
// and configures the instance as specified.
//
// If you associate a document with an instance that already has an associated
// document, the system throws the AssociationAlreadyExists exception.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
2016-10-17 23:21:08 +02:00
// API operation CreateAssociationBatch for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidDocument "InvalidDocument"
2016-10-17 23:21:08 +02:00
// The specified document does not exist.
//
// * ErrCodeInvalidDocumentVersion "InvalidDocumentVersion"
2016-12-02 15:37:53 +01:00
// The document version is not valid or does not exist.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
2016-12-02 15:37:53 +01:00
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
2016-10-17 23:21:08 +02:00
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidParameters "InvalidParameters"
2016-10-17 23:21:08 +02:00
// You must specify values for all required parameters in the SSM document.
// You can only supply values to parameters defined in the SSM document.
//
// * ErrCodeDuplicateInstanceId "DuplicateInstanceId"
2016-10-17 23:21:08 +02:00
// You cannot specify an instance ID in more than one association.
//
// * ErrCodeAssociationLimitExceeded "AssociationLimitExceeded"
2016-10-17 23:21:08 +02:00
// You can have at most 2,000 active associations.
//
// * ErrCodeUnsupportedPlatformType "UnsupportedPlatformType"
2016-10-17 23:21:08 +02:00
// The document does not support the platform type of the given instance ID(s).
// For example, you sent an SSM document for a Windows instance to a Linux instance.
//
// * ErrCodeInvalidOutputLocation "InvalidOutputLocation"
2016-12-02 15:37:53 +01:00
// The output location is not valid or does not exist.
//
// * ErrCodeInvalidTarget "InvalidTarget"
2016-12-02 15:37:53 +01:00
// The target is not valid or does not exist. It might not be configured for
// EC2 Systems Manager or you might not have permission to perform the operation.
//
// * ErrCodeInvalidSchedule "InvalidSchedule"
2016-12-02 15:37:53 +01:00
// The schedule is invalid. Verify your cron or rate expression and try again.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatch
func (c *SSM) CreateAssociationBatch(input *CreateAssociationBatchInput) (*CreateAssociationBatchOutput, error) {
req, out := c.CreateAssociationBatchRequest(input)
err := req.Send()
return out, err
}
const opCreateDocument = "CreateDocument"
// CreateDocumentRequest generates a "aws/request.Request" representing the
// client's request for the CreateDocument operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CreateDocument for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreateDocument method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreateDocumentRequest method.
// req, resp := client.CreateDocumentRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateDocument
func (c *SSM) CreateDocumentRequest(input *CreateDocumentInput) (req *request.Request, output *CreateDocumentOutput) {
op := &request.Operation{
Name: opCreateDocument,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateDocumentInput{}
}
output = &CreateDocumentOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// CreateDocument API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Creates an SSM document.
//
// After you create an SSM document, you can use CreateAssociation to associate
// it with one or more running instances.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
2016-10-17 23:21:08 +02:00
// API operation CreateDocument for usage and error information.
//
// Returned Error Codes:
// * ErrCodeDocumentAlreadyExists "DocumentAlreadyExists"
2016-10-17 23:21:08 +02:00
// The specified SSM document already exists.
//
// * ErrCodeMaxDocumentSizeExceeded "MaxDocumentSizeExceeded"
2016-10-17 23:21:08 +02:00
// The size limit of an SSM document is 64 KB.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidDocumentContent "InvalidDocumentContent"
2016-10-17 23:21:08 +02:00
// The content for the SSM document is not valid.
//
// * ErrCodeDocumentLimitExceeded "DocumentLimitExceeded"
2016-10-17 23:21:08 +02:00
// You can have at most 200 active SSM documents.
//
// * ErrCodeInvalidDocumentSchemaVersion "InvalidDocumentSchemaVersion"
2016-12-02 15:37:53 +01:00
// The version of the document schema is not supported.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateDocument
func (c *SSM) CreateDocument(input *CreateDocumentInput) (*CreateDocumentOutput, error) {
req, out := c.CreateDocumentRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opCreateMaintenanceWindow = "CreateMaintenanceWindow"
// CreateMaintenanceWindowRequest generates a "aws/request.Request" representing the
// client's request for the CreateMaintenanceWindow operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See CreateMaintenanceWindow for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreateMaintenanceWindow method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreateMaintenanceWindowRequest method.
// req, resp := client.CreateMaintenanceWindowRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateMaintenanceWindow
2016-12-02 15:37:53 +01:00
func (c *SSM) CreateMaintenanceWindowRequest(input *CreateMaintenanceWindowInput) (req *request.Request, output *CreateMaintenanceWindowOutput) {
op := &request.Operation{
Name: opCreateMaintenanceWindow,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateMaintenanceWindowInput{}
}
output = &CreateMaintenanceWindowOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// CreateMaintenanceWindow API operation for Amazon Simple Systems Manager (SSM).
//
// Creates a new Maintenance Window.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation CreateMaintenanceWindow for usage and error information.
//
// Returned Error Codes:
// * ErrCodeIdempotentParameterMismatch "IdempotentParameterMismatch"
2016-12-02 15:37:53 +01:00
// Error returned when an idempotent operation is retried and the parameters
// dont match the original call to the API with the same idempotency token.
//
// * ErrCodeResourceLimitExceededException "ResourceLimitExceededException"
2016-12-02 15:37:53 +01:00
// Error returned when the caller has exceeded the default resource limits (e.g.
// too many Maintenance Windows have been created).
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateMaintenanceWindow
2016-12-02 15:37:53 +01:00
func (c *SSM) CreateMaintenanceWindow(input *CreateMaintenanceWindowInput) (*CreateMaintenanceWindowOutput, error) {
req, out := c.CreateMaintenanceWindowRequest(input)
err := req.Send()
return out, err
}
const opCreatePatchBaseline = "CreatePatchBaseline"
// CreatePatchBaselineRequest generates a "aws/request.Request" representing the
// client's request for the CreatePatchBaseline operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See CreatePatchBaseline for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreatePatchBaseline method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreatePatchBaselineRequest method.
// req, resp := client.CreatePatchBaselineRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreatePatchBaseline
func (c *SSM) CreatePatchBaselineRequest(input *CreatePatchBaselineInput) (req *request.Request, output *CreatePatchBaselineOutput) {
op := &request.Operation{
Name: opCreatePatchBaseline,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreatePatchBaselineInput{}
}
output = &CreatePatchBaselineOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// CreatePatchBaseline API operation for Amazon Simple Systems Manager (SSM).
//
// Creates a patch baseline.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation CreatePatchBaseline for usage and error information.
//
// Returned Error Codes:
// * ErrCodeIdempotentParameterMismatch "IdempotentParameterMismatch"
// Error returned when an idempotent operation is retried and the parameters
// dont match the original call to the API with the same idempotency token.
//
// * ErrCodeResourceLimitExceededException "ResourceLimitExceededException"
// Error returned when the caller has exceeded the default resource limits (e.g.
// too many Maintenance Windows have been created).
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreatePatchBaseline
func (c *SSM) CreatePatchBaseline(input *CreatePatchBaselineInput) (*CreatePatchBaselineOutput, error) {
req, out := c.CreatePatchBaselineRequest(input)
err := req.Send()
return out, err
}
const opDeleteActivation = "DeleteActivation"
// DeleteActivationRequest generates a "aws/request.Request" representing the
// client's request for the DeleteActivation operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DeleteActivation for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeleteActivation method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeleteActivationRequest method.
// req, resp := client.DeleteActivationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteActivation
func (c *SSM) DeleteActivationRequest(input *DeleteActivationInput) (req *request.Request, output *DeleteActivationOutput) {
op := &request.Operation{
Name: opDeleteActivation,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteActivationInput{}
}
output = &DeleteActivationOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DeleteActivation API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Deletes an activation. You are not required to delete an activation. If you
// delete an activation, you can no longer use it to register additional managed
// instances. Deleting an activation does not de-register managed instances.
// You must manually de-register managed instances.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
2016-10-17 23:21:08 +02:00
// API operation DeleteActivation for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInvalidActivationId "InvalidActivationId"
2016-10-17 23:21:08 +02:00
// The activation ID is not valid. Verify the you entered the correct ActivationId
// or ActivationCode and try again.
//
// * ErrCodeInvalidActivation "InvalidActivation"
2016-10-17 23:21:08 +02:00
// The activation is not valid. The activation might have been deleted, or the
// ActivationId and the ActivationCode do not match.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteActivation
func (c *SSM) DeleteActivation(input *DeleteActivationInput) (*DeleteActivationOutput, error) {
req, out := c.DeleteActivationRequest(input)
err := req.Send()
return out, err
}
const opDeleteAssociation = "DeleteAssociation"
// DeleteAssociationRequest generates a "aws/request.Request" representing the
// client's request for the DeleteAssociation operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DeleteAssociation for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeleteAssociation method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeleteAssociationRequest method.
// req, resp := client.DeleteAssociationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteAssociation
func (c *SSM) DeleteAssociationRequest(input *DeleteAssociationInput) (req *request.Request, output *DeleteAssociationOutput) {
op := &request.Operation{
Name: opDeleteAssociation,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteAssociationInput{}
}
output = &DeleteAssociationOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DeleteAssociation API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Disassociates the specified SSM document from the specified instance.
//
// When you disassociate an SSM document from an instance, it does not change
// the configuration of the instance. To change the configuration state of an
// instance after you disassociate a document, you must create a new document
// with the desired configuration and associate it with the instance.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
2016-10-17 23:21:08 +02:00
// API operation DeleteAssociation for usage and error information.
//
// Returned Error Codes:
// * ErrCodeAssociationDoesNotExist "AssociationDoesNotExist"
2016-10-17 23:21:08 +02:00
// The specified association does not exist.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidDocument "InvalidDocument"
2016-10-17 23:21:08 +02:00
// The specified document does not exist.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
2016-12-02 15:37:53 +01:00
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
2016-10-17 23:21:08 +02:00
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeTooManyUpdates "TooManyUpdates"
2016-10-17 23:21:08 +02:00
// There are concurrent updates for a resource that supports one update at a
// time.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteAssociation
func (c *SSM) DeleteAssociation(input *DeleteAssociationInput) (*DeleteAssociationOutput, error) {
req, out := c.DeleteAssociationRequest(input)
err := req.Send()
return out, err
}
const opDeleteDocument = "DeleteDocument"
// DeleteDocumentRequest generates a "aws/request.Request" representing the
// client's request for the DeleteDocument operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DeleteDocument for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeleteDocument method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeleteDocumentRequest method.
// req, resp := client.DeleteDocumentRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteDocument
func (c *SSM) DeleteDocumentRequest(input *DeleteDocumentInput) (req *request.Request, output *DeleteDocumentOutput) {
op := &request.Operation{
Name: opDeleteDocument,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteDocumentInput{}
}
output = &DeleteDocumentOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DeleteDocument API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Deletes the SSM document and all instance associations to the document.
//
// Before you delete the SSM document, we recommend that you use DeleteAssociation
// to disassociate all instances that are associated with the document.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
2016-10-17 23:21:08 +02:00
// API operation DeleteDocument for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidDocument "InvalidDocument"
2016-10-17 23:21:08 +02:00
// The specified document does not exist.
//
// * ErrCodeInvalidDocumentOperation "InvalidDocumentOperation"
2016-10-17 23:21:08 +02:00
// You attempted to delete a document while it is still shared. You must stop
// sharing the document before you can delete it.
//
// * ErrCodeAssociatedInstances "AssociatedInstances"
2016-10-17 23:21:08 +02:00
// You must disassociate an SSM document from all instances before you can delete
// it.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteDocument
func (c *SSM) DeleteDocument(input *DeleteDocumentInput) (*DeleteDocumentOutput, error) {
req, out := c.DeleteDocumentRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opDeleteMaintenanceWindow = "DeleteMaintenanceWindow"
2016-12-02 15:37:53 +01:00
// DeleteMaintenanceWindowRequest generates a "aws/request.Request" representing the
// client's request for the DeleteMaintenanceWindow operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DeleteMaintenanceWindow for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DeleteMaintenanceWindow method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DeleteMaintenanceWindowRequest method.
// req, resp := client.DeleteMaintenanceWindowRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteMaintenanceWindow
2016-12-02 15:37:53 +01:00
func (c *SSM) DeleteMaintenanceWindowRequest(input *DeleteMaintenanceWindowInput) (req *request.Request, output *DeleteMaintenanceWindowOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDeleteMaintenanceWindow,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DeleteMaintenanceWindowInput{}
}
2016-12-02 15:37:53 +01:00
output = &DeleteMaintenanceWindowOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DeleteMaintenanceWindow API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Deletes a Maintenance Window.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DeleteMaintenanceWindow for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteMaintenanceWindow
2016-12-02 15:37:53 +01:00
func (c *SSM) DeleteMaintenanceWindow(input *DeleteMaintenanceWindowInput) (*DeleteMaintenanceWindowOutput, error) {
req, out := c.DeleteMaintenanceWindowRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opDeleteParameter = "DeleteParameter"
2016-12-02 15:37:53 +01:00
// DeleteParameterRequest generates a "aws/request.Request" representing the
// client's request for the DeleteParameter operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DeleteParameter for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DeleteParameter method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DeleteParameterRequest method.
// req, resp := client.DeleteParameterRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteParameter
2016-12-02 15:37:53 +01:00
func (c *SSM) DeleteParameterRequest(input *DeleteParameterInput) (req *request.Request, output *DeleteParameterOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDeleteParameter,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DeleteParameterInput{}
}
2016-12-02 15:37:53 +01:00
output = &DeleteParameterOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DeleteParameter API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Delete a parameter from the system.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DeleteParameter for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeParameterNotFound "ParameterNotFound"
2016-12-02 15:37:53 +01:00
// The parameter could not be found. Verify the name and try again.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteParameter
2016-12-02 15:37:53 +01:00
func (c *SSM) DeleteParameter(input *DeleteParameterInput) (*DeleteParameterOutput, error) {
req, out := c.DeleteParameterRequest(input)
err := req.Send()
return out, err
}
const opDeletePatchBaseline = "DeletePatchBaseline"
// DeletePatchBaselineRequest generates a "aws/request.Request" representing the
// client's request for the DeletePatchBaseline operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DeletePatchBaseline for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeletePatchBaseline method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeletePatchBaselineRequest method.
// req, resp := client.DeletePatchBaselineRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeletePatchBaseline
func (c *SSM) DeletePatchBaselineRequest(input *DeletePatchBaselineInput) (req *request.Request, output *DeletePatchBaselineOutput) {
op := &request.Operation{
Name: opDeletePatchBaseline,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeletePatchBaselineInput{}
}
output = &DeletePatchBaselineOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// DeletePatchBaseline API operation for Amazon Simple Systems Manager (SSM).
//
// Deletes a patch baseline.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DeletePatchBaseline for usage and error information.
//
// Returned Error Codes:
// * ErrCodeResourceInUseException "ResourceInUseException"
// Error returned if an attempt is made to delete a patch baseline that is registered
// for a patch group.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeletePatchBaseline
func (c *SSM) DeletePatchBaseline(input *DeletePatchBaselineInput) (*DeletePatchBaselineOutput, error) {
req, out := c.DeletePatchBaselineRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opDeregisterManagedInstance = "DeregisterManagedInstance"
2016-12-02 15:37:53 +01:00
// DeregisterManagedInstanceRequest generates a "aws/request.Request" representing the
// client's request for the DeregisterManagedInstance operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DeregisterManagedInstance for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DeregisterManagedInstance method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DeregisterManagedInstanceRequest method.
// req, resp := client.DeregisterManagedInstanceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterManagedInstance
2016-12-02 15:37:53 +01:00
func (c *SSM) DeregisterManagedInstanceRequest(input *DeregisterManagedInstanceInput) (req *request.Request, output *DeregisterManagedInstanceOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDeregisterManagedInstance,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DeregisterManagedInstanceInput{}
}
2016-12-02 15:37:53 +01:00
output = &DeregisterManagedInstanceOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DeregisterManagedInstance API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Removes the server or virtual machine from the list of registered servers.
// You can reregister the instance again at any time. If you dont plan to use
// Run Command on the server, we suggest uninstalling the SSM agent first.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DeregisterManagedInstance for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
2016-12-02 15:37:53 +01:00
// The following problems can cause this exception:
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// You do not have permission to access the instance.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
2016-10-17 23:21:08 +02:00
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterManagedInstance
2016-12-02 15:37:53 +01:00
func (c *SSM) DeregisterManagedInstance(input *DeregisterManagedInstanceInput) (*DeregisterManagedInstanceOutput, error) {
req, out := c.DeregisterManagedInstanceRequest(input)
err := req.Send()
return out, err
}
const opDeregisterPatchBaselineForPatchGroup = "DeregisterPatchBaselineForPatchGroup"
// DeregisterPatchBaselineForPatchGroupRequest generates a "aws/request.Request" representing the
// client's request for the DeregisterPatchBaselineForPatchGroup operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DeregisterPatchBaselineForPatchGroup for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeregisterPatchBaselineForPatchGroup method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeregisterPatchBaselineForPatchGroupRequest method.
// req, resp := client.DeregisterPatchBaselineForPatchGroupRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterPatchBaselineForPatchGroup
func (c *SSM) DeregisterPatchBaselineForPatchGroupRequest(input *DeregisterPatchBaselineForPatchGroupInput) (req *request.Request, output *DeregisterPatchBaselineForPatchGroupOutput) {
op := &request.Operation{
Name: opDeregisterPatchBaselineForPatchGroup,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeregisterPatchBaselineForPatchGroupInput{}
}
output = &DeregisterPatchBaselineForPatchGroupOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// DeregisterPatchBaselineForPatchGroup API operation for Amazon Simple Systems Manager (SSM).
//
// Removes a patch group from a patch baseline.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DeregisterPatchBaselineForPatchGroup for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInvalidResourceId "InvalidResourceId"
// The resource ID is not valid. Verify that you entered the correct ID and
// try again.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterPatchBaselineForPatchGroup
func (c *SSM) DeregisterPatchBaselineForPatchGroup(input *DeregisterPatchBaselineForPatchGroupInput) (*DeregisterPatchBaselineForPatchGroupOutput, error) {
req, out := c.DeregisterPatchBaselineForPatchGroupRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opDeregisterTargetFromMaintenanceWindow = "DeregisterTargetFromMaintenanceWindow"
2016-12-02 15:37:53 +01:00
// DeregisterTargetFromMaintenanceWindowRequest generates a "aws/request.Request" representing the
// client's request for the DeregisterTargetFromMaintenanceWindow operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DeregisterTargetFromMaintenanceWindow for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DeregisterTargetFromMaintenanceWindow method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DeregisterTargetFromMaintenanceWindowRequest method.
// req, resp := client.DeregisterTargetFromMaintenanceWindowRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterTargetFromMaintenanceWindow
2016-12-02 15:37:53 +01:00
func (c *SSM) DeregisterTargetFromMaintenanceWindowRequest(input *DeregisterTargetFromMaintenanceWindowInput) (req *request.Request, output *DeregisterTargetFromMaintenanceWindowOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDeregisterTargetFromMaintenanceWindow,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DeregisterTargetFromMaintenanceWindowInput{}
}
2016-12-02 15:37:53 +01:00
output = &DeregisterTargetFromMaintenanceWindowOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DeregisterTargetFromMaintenanceWindow API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Removes a target from a Maintenance Window.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DeregisterTargetFromMaintenanceWindow for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
2016-12-02 15:37:53 +01:00
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterTargetFromMaintenanceWindow
2016-12-02 15:37:53 +01:00
func (c *SSM) DeregisterTargetFromMaintenanceWindow(input *DeregisterTargetFromMaintenanceWindowInput) (*DeregisterTargetFromMaintenanceWindowOutput, error) {
req, out := c.DeregisterTargetFromMaintenanceWindowRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opDeregisterTaskFromMaintenanceWindow = "DeregisterTaskFromMaintenanceWindow"
2016-12-02 15:37:53 +01:00
// DeregisterTaskFromMaintenanceWindowRequest generates a "aws/request.Request" representing the
// client's request for the DeregisterTaskFromMaintenanceWindow operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DeregisterTaskFromMaintenanceWindow for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DeregisterTaskFromMaintenanceWindow method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DeregisterTaskFromMaintenanceWindowRequest method.
// req, resp := client.DeregisterTaskFromMaintenanceWindowRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterTaskFromMaintenanceWindow
2016-12-02 15:37:53 +01:00
func (c *SSM) DeregisterTaskFromMaintenanceWindowRequest(input *DeregisterTaskFromMaintenanceWindowInput) (req *request.Request, output *DeregisterTaskFromMaintenanceWindowOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDeregisterTaskFromMaintenanceWindow,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DeregisterTaskFromMaintenanceWindowInput{}
}
2016-12-02 15:37:53 +01:00
output = &DeregisterTaskFromMaintenanceWindowOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DeregisterTaskFromMaintenanceWindow API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Removes a task from a Maintenance Window.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DeregisterTaskFromMaintenanceWindow for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
2016-12-02 15:37:53 +01:00
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterTaskFromMaintenanceWindow
2016-12-02 15:37:53 +01:00
func (c *SSM) DeregisterTaskFromMaintenanceWindow(input *DeregisterTaskFromMaintenanceWindowInput) (*DeregisterTaskFromMaintenanceWindowOutput, error) {
req, out := c.DeregisterTaskFromMaintenanceWindowRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opDescribeActivations = "DescribeActivations"
2016-12-02 15:37:53 +01:00
// DescribeActivationsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeActivations operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DescribeActivations for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DescribeActivations method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DescribeActivationsRequest method.
// req, resp := client.DescribeActivationsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeActivations
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeActivationsRequest(input *DescribeActivationsInput) (req *request.Request, output *DescribeActivationsOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDescribeActivations,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "MaxResults",
TruncationToken: "",
},
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DescribeActivationsInput{}
}
2016-12-02 15:37:53 +01:00
output = &DescribeActivationsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DescribeActivations API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Details about the activation, including: the date and time the activation
// was created, the expiration date, the IAM role assigned to the instances
// in the activation, and the number of instances activated by this registration.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeActivations for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInvalidFilter "InvalidFilter"
2016-12-02 15:37:53 +01:00
// The filter name is not valid. Verify the you entered the correct name and
// try again.
2016-10-17 23:21:08 +02:00
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
2016-10-17 23:21:08 +02:00
// The specified token is not valid.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
2016-10-17 23:21:08 +02:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeActivations
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeActivations(input *DescribeActivationsInput) (*DescribeActivationsOutput, error) {
req, out := c.DescribeActivationsRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
// DescribeActivationsPages iterates over the pages of a DescribeActivations operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
2016-12-02 15:37:53 +01:00
// See DescribeActivations method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
2016-12-02 15:37:53 +01:00
// // Example iterating over at most 3 pages of a DescribeActivations operation.
// pageNum := 0
2016-12-02 15:37:53 +01:00
// err := client.DescribeActivationsPages(params,
// func(page *DescribeActivationsOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeActivationsPages(input *DescribeActivationsInput, fn func(p *DescribeActivationsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.DescribeActivationsRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
2016-12-02 15:37:53 +01:00
return fn(p.(*DescribeActivationsOutput), lastPage)
})
}
2016-12-02 15:37:53 +01:00
const opDescribeAssociation = "DescribeAssociation"
2016-12-02 15:37:53 +01:00
// DescribeAssociationRequest generates a "aws/request.Request" representing the
// client's request for the DescribeAssociation operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DescribeAssociation for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DescribeAssociation method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DescribeAssociationRequest method.
// req, resp := client.DescribeAssociationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociation
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeAssociationRequest(input *DescribeAssociationInput) (req *request.Request, output *DescribeAssociationOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDescribeAssociation,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DescribeAssociationInput{}
}
2016-12-02 15:37:53 +01:00
output = &DescribeAssociationOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DescribeAssociation API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Describes the associations for the specified SSM document or instance.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeAssociation for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeAssociationDoesNotExist "AssociationDoesNotExist"
2016-12-02 15:37:53 +01:00
// The specified association does not exist.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidDocument "InvalidDocument"
2016-10-17 23:21:08 +02:00
// The specified document does not exist.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
2016-12-02 15:37:53 +01:00
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociation
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeAssociation(input *DescribeAssociationInput) (*DescribeAssociationOutput, error) {
req, out := c.DescribeAssociationRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opDescribeAutomationExecutions = "DescribeAutomationExecutions"
2016-12-02 15:37:53 +01:00
// DescribeAutomationExecutionsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeAutomationExecutions operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DescribeAutomationExecutions for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DescribeAutomationExecutions method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DescribeAutomationExecutionsRequest method.
// req, resp := client.DescribeAutomationExecutionsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationExecutions
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeAutomationExecutionsRequest(input *DescribeAutomationExecutionsInput) (req *request.Request, output *DescribeAutomationExecutionsOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDescribeAutomationExecutions,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DescribeAutomationExecutionsInput{}
}
2016-12-02 15:37:53 +01:00
output = &DescribeAutomationExecutionsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DescribeAutomationExecutions API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Provides details about all active and terminated Automation executions.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeAutomationExecutions for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInvalidNextToken "InvalidNextToken"
2016-10-17 23:21:08 +02:00
// The specified token is not valid.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationExecutions
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeAutomationExecutions(input *DescribeAutomationExecutionsInput) (*DescribeAutomationExecutionsOutput, error) {
req, out := c.DescribeAutomationExecutionsRequest(input)
err := req.Send()
return out, err
}
const opDescribeAvailablePatches = "DescribeAvailablePatches"
// DescribeAvailablePatchesRequest generates a "aws/request.Request" representing the
// client's request for the DescribeAvailablePatches operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeAvailablePatches for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeAvailablePatches method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeAvailablePatchesRequest method.
// req, resp := client.DescribeAvailablePatchesRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAvailablePatches
func (c *SSM) DescribeAvailablePatchesRequest(input *DescribeAvailablePatchesInput) (req *request.Request, output *DescribeAvailablePatchesOutput) {
op := &request.Operation{
Name: opDescribeAvailablePatches,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeAvailablePatchesInput{}
}
output = &DescribeAvailablePatchesOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// DescribeAvailablePatches API operation for Amazon Simple Systems Manager (SSM).
//
// Lists all patches that could possibly be included in a patch baseline.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeAvailablePatches for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAvailablePatches
func (c *SSM) DescribeAvailablePatches(input *DescribeAvailablePatchesInput) (*DescribeAvailablePatchesOutput, error) {
req, out := c.DescribeAvailablePatchesRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opDescribeDocument = "DescribeDocument"
2016-12-02 15:37:53 +01:00
// DescribeDocumentRequest generates a "aws/request.Request" representing the
// client's request for the DescribeDocument operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DescribeDocument for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DescribeDocument method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DescribeDocumentRequest method.
// req, resp := client.DescribeDocumentRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocument
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeDocumentRequest(input *DescribeDocumentInput) (req *request.Request, output *DescribeDocumentOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDescribeDocument,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DescribeDocumentInput{}
}
2016-12-02 15:37:53 +01:00
output = &DescribeDocumentOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DescribeDocument API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Describes the specified SSM document.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeDocument for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidDocument "InvalidDocument"
2016-12-02 15:37:53 +01:00
// The specified document does not exist.
2016-10-17 23:21:08 +02:00
//
// * ErrCodeInvalidDocumentVersion "InvalidDocumentVersion"
2016-12-02 15:37:53 +01:00
// The document version is not valid or does not exist.
2016-10-17 23:21:08 +02:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocument
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeDocument(input *DescribeDocumentInput) (*DescribeDocumentOutput, error) {
req, out := c.DescribeDocumentRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opDescribeDocumentPermission = "DescribeDocumentPermission"
2016-12-02 15:37:53 +01:00
// DescribeDocumentPermissionRequest generates a "aws/request.Request" representing the
// client's request for the DescribeDocumentPermission operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DescribeDocumentPermission for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DescribeDocumentPermission method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DescribeDocumentPermissionRequest method.
// req, resp := client.DescribeDocumentPermissionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentPermission
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeDocumentPermissionRequest(input *DescribeDocumentPermissionInput) (req *request.Request, output *DescribeDocumentPermissionOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDescribeDocumentPermission,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DescribeDocumentPermissionInput{}
}
2016-12-02 15:37:53 +01:00
output = &DescribeDocumentPermissionOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DescribeDocumentPermission API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Describes the permissions for an SSM document. If you created the document,
// you are the owner. If a document is shared, it can either be shared privately
// (by specifying a users AWS account ID) or publicly (All).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeDocumentPermission for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidDocument "InvalidDocument"
2016-12-02 15:37:53 +01:00
// The specified document does not exist.
2016-10-17 23:21:08 +02:00
//
// * ErrCodeInvalidPermissionType "InvalidPermissionType"
2016-12-02 15:37:53 +01:00
// The permission type is not supported. Share is the only supported permission
// type.
2016-10-17 23:21:08 +02:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentPermission
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeDocumentPermission(input *DescribeDocumentPermissionInput) (*DescribeDocumentPermissionOutput, error) {
req, out := c.DescribeDocumentPermissionRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opDescribeEffectiveInstanceAssociations = "DescribeEffectiveInstanceAssociations"
2016-12-02 15:37:53 +01:00
// DescribeEffectiveInstanceAssociationsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeEffectiveInstanceAssociations operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-12-02 15:37:53 +01:00
// See DescribeEffectiveInstanceAssociations for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
2016-12-02 15:37:53 +01:00
// you just want the service response, call the DescribeEffectiveInstanceAssociations method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DescribeEffectiveInstanceAssociationsRequest method.
// req, resp := client.DescribeEffectiveInstanceAssociationsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeEffectiveInstanceAssociations
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeEffectiveInstanceAssociationsRequest(input *DescribeEffectiveInstanceAssociationsInput) (req *request.Request, output *DescribeEffectiveInstanceAssociationsOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDescribeEffectiveInstanceAssociations,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DescribeEffectiveInstanceAssociationsInput{}
}
2016-12-02 15:37:53 +01:00
output = &DescribeEffectiveInstanceAssociationsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DescribeEffectiveInstanceAssociations API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// All associations for the instance(s).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeEffectiveInstanceAssociations for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
2016-12-02 15:37:53 +01:00
// The following problems can cause this exception:
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// You do not have permission to access the instance.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
2016-12-02 15:37:53 +01:00
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
2016-12-02 15:37:53 +01:00
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
2016-12-02 15:37:53 +01:00
// The specified token is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeEffectiveInstanceAssociations
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeEffectiveInstanceAssociations(input *DescribeEffectiveInstanceAssociationsInput) (*DescribeEffectiveInstanceAssociationsOutput, error) {
req, out := c.DescribeEffectiveInstanceAssociationsRequest(input)
err := req.Send()
return out, err
}
const opDescribeEffectivePatchesForPatchBaseline = "DescribeEffectivePatchesForPatchBaseline"
// DescribeEffectivePatchesForPatchBaselineRequest generates a "aws/request.Request" representing the
// client's request for the DescribeEffectivePatchesForPatchBaseline operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeEffectivePatchesForPatchBaseline for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeEffectivePatchesForPatchBaseline method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeEffectivePatchesForPatchBaselineRequest method.
// req, resp := client.DescribeEffectivePatchesForPatchBaselineRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeEffectivePatchesForPatchBaseline
func (c *SSM) DescribeEffectivePatchesForPatchBaselineRequest(input *DescribeEffectivePatchesForPatchBaselineInput) (req *request.Request, output *DescribeEffectivePatchesForPatchBaselineOutput) {
op := &request.Operation{
Name: opDescribeEffectivePatchesForPatchBaseline,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeEffectivePatchesForPatchBaselineInput{}
}
output = &DescribeEffectivePatchesForPatchBaselineOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// DescribeEffectivePatchesForPatchBaseline API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Retrieves the current effective patches (the patch and the approval state)
// for the specified patch baseline.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeEffectivePatchesForPatchBaseline for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInvalidResourceId "InvalidResourceId"
// The resource ID is not valid. Verify that you entered the correct ID and
// try again.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
2016-12-02 15:37:53 +01:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeEffectivePatchesForPatchBaseline
func (c *SSM) DescribeEffectivePatchesForPatchBaseline(input *DescribeEffectivePatchesForPatchBaselineInput) (*DescribeEffectivePatchesForPatchBaselineOutput, error) {
req, out := c.DescribeEffectivePatchesForPatchBaselineRequest(input)
err := req.Send()
return out, err
}
const opDescribeInstanceAssociationsStatus = "DescribeInstanceAssociationsStatus"
// DescribeInstanceAssociationsStatusRequest generates a "aws/request.Request" representing the
// client's request for the DescribeInstanceAssociationsStatus operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeInstanceAssociationsStatus for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeInstanceAssociationsStatus method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeInstanceAssociationsStatusRequest method.
// req, resp := client.DescribeInstanceAssociationsStatusRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceAssociationsStatus
func (c *SSM) DescribeInstanceAssociationsStatusRequest(input *DescribeInstanceAssociationsStatusInput) (req *request.Request, output *DescribeInstanceAssociationsStatusOutput) {
op := &request.Operation{
Name: opDescribeInstanceAssociationsStatus,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeInstanceAssociationsStatusInput{}
}
output = &DescribeInstanceAssociationsStatusOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// DescribeInstanceAssociationsStatus API operation for Amazon Simple Systems Manager (SSM).
//
// The status of the associations for the instance(s).
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeInstanceAssociationsStatus for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceAssociationsStatus
func (c *SSM) DescribeInstanceAssociationsStatus(input *DescribeInstanceAssociationsStatusInput) (*DescribeInstanceAssociationsStatusOutput, error) {
req, out := c.DescribeInstanceAssociationsStatusRequest(input)
err := req.Send()
return out, err
}
const opDescribeInstanceInformation = "DescribeInstanceInformation"
// DescribeInstanceInformationRequest generates a "aws/request.Request" representing the
// client's request for the DescribeInstanceInformation operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeInstanceInformation for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeInstanceInformation method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-12-02 15:37:53 +01:00
// // Example sending a request using the DescribeInstanceInformationRequest method.
// req, resp := client.DescribeInstanceInformationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceInformation
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeInstanceInformationRequest(input *DescribeInstanceInformationInput) (req *request.Request, output *DescribeInstanceInformationOutput) {
op := &request.Operation{
2016-12-02 15:37:53 +01:00
Name: opDescribeInstanceInformation,
HTTPMethod: "POST",
HTTPPath: "/",
2016-12-02 15:37:53 +01:00
Paginator: &request.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "MaxResults",
TruncationToken: "",
},
}
if input == nil {
2016-12-02 15:37:53 +01:00
input = &DescribeInstanceInformationInput{}
}
2016-12-02 15:37:53 +01:00
output = &DescribeInstanceInformationOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// DescribeInstanceInformation API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Describes one or more of your instances. You can use this to get information
// about instances like the operating system platform, the SSM agent version
// (Linux), status etc. If you specify one or more instance IDs, it returns
// information for those instances. If you do not specify instance IDs, it returns
// information for all your instances. If you specify an instance ID that is
// not valid or an instance that you do not own, you receive an error.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeInstanceInformation for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
2016-12-02 15:37:53 +01:00
// The following problems can cause this exception:
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// You do not have permission to access the instance.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
2016-12-02 15:37:53 +01:00
// The specified token is not valid.
//
// * ErrCodeInvalidInstanceInformationFilterValue "InvalidInstanceInformationFilterValue"
2016-12-02 15:37:53 +01:00
// The specified filter value is not valid.
//
// * ErrCodeInvalidFilterKey "InvalidFilterKey"
2016-12-02 15:37:53 +01:00
// The specified key is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceInformation
2016-12-02 15:37:53 +01:00
func (c *SSM) DescribeInstanceInformation(input *DescribeInstanceInformationInput) (*DescribeInstanceInformationOutput, error) {
req, out := c.DescribeInstanceInformationRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
// DescribeInstanceInformationPages iterates over the pages of a DescribeInstanceInformation operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See DescribeInstanceInformation method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a DescribeInstanceInformation operation.
// pageNum := 0
// err := client.DescribeInstanceInformationPages(params,
// func(page *DescribeInstanceInformationOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
func (c *SSM) DescribeInstanceInformationPages(input *DescribeInstanceInformationInput, fn func(p *DescribeInstanceInformationOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.DescribeInstanceInformationRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*DescribeInstanceInformationOutput), lastPage)
})
}
const opDescribeInstancePatchStates = "DescribeInstancePatchStates"
2016-12-02 15:37:53 +01:00
// DescribeInstancePatchStatesRequest generates a "aws/request.Request" representing the
// client's request for the DescribeInstancePatchStates operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeInstancePatchStates for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeInstancePatchStates method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeInstancePatchStatesRequest method.
// req, resp := client.DescribeInstancePatchStatesRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStates
func (c *SSM) DescribeInstancePatchStatesRequest(input *DescribeInstancePatchStatesInput) (req *request.Request, output *DescribeInstancePatchStatesOutput) {
op := &request.Operation{
Name: opDescribeInstancePatchStates,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeInstancePatchStatesInput{}
}
output = &DescribeInstancePatchStatesOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// DescribeInstancePatchStates API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Retrieves the high-level patch state of one or more instances.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeInstancePatchStates for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStates
func (c *SSM) DescribeInstancePatchStates(input *DescribeInstancePatchStatesInput) (*DescribeInstancePatchStatesOutput, error) {
req, out := c.DescribeInstancePatchStatesRequest(input)
err := req.Send()
return out, err
}
const opDescribeInstancePatchStatesForPatchGroup = "DescribeInstancePatchStatesForPatchGroup"
// DescribeInstancePatchStatesForPatchGroupRequest generates a "aws/request.Request" representing the
// client's request for the DescribeInstancePatchStatesForPatchGroup operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeInstancePatchStatesForPatchGroup for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeInstancePatchStatesForPatchGroup method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeInstancePatchStatesForPatchGroupRequest method.
// req, resp := client.DescribeInstancePatchStatesForPatchGroupRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStatesForPatchGroup
func (c *SSM) DescribeInstancePatchStatesForPatchGroupRequest(input *DescribeInstancePatchStatesForPatchGroupInput) (req *request.Request, output *DescribeInstancePatchStatesForPatchGroupOutput) {
op := &request.Operation{
Name: opDescribeInstancePatchStatesForPatchGroup,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeInstancePatchStatesForPatchGroupInput{}
}
output = &DescribeInstancePatchStatesForPatchGroupOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// DescribeInstancePatchStatesForPatchGroup API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Retrieves the high-level patch state for the instances in the specified patch
// group.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeInstancePatchStatesForPatchGroup for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// * ErrCodeInvalidFilter "InvalidFilter"
// The filter name is not valid. Verify the you entered the correct name and
// try again.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStatesForPatchGroup
func (c *SSM) DescribeInstancePatchStatesForPatchGroup(input *DescribeInstancePatchStatesForPatchGroupInput) (*DescribeInstancePatchStatesForPatchGroupOutput, error) {
req, out := c.DescribeInstancePatchStatesForPatchGroupRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opDescribeInstancePatches = "DescribeInstancePatches"
2016-12-02 15:37:53 +01:00
// DescribeInstancePatchesRequest generates a "aws/request.Request" representing the
// client's request for the DescribeInstancePatches operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
2016-10-17 23:21:08 +02:00
//
// See DescribeInstancePatches for usage and error information.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeInstancePatches method directly
2016-12-02 15:37:53 +01:00
// instead.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
2016-10-17 23:21:08 +02:00
//
// // Example sending a request using the DescribeInstancePatchesRequest method.
// req, resp := client.DescribeInstancePatchesRequest(params)
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
2016-10-17 23:21:08 +02:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatches
func (c *SSM) DescribeInstancePatchesRequest(input *DescribeInstancePatchesInput) (req *request.Request, output *DescribeInstancePatchesOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opDescribeInstancePatches,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeInstancePatchesInput{}
2016-12-02 15:37:53 +01:00
}
output = &DescribeInstancePatchesOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// DescribeInstancePatches API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Retrieves information about the patches on the specified instance and their
// state relative to the patch baseline being used for the instance.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeInstancePatches for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidFilter "InvalidFilter"
// The filter name is not valid. Verify the you entered the correct name and
// try again.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatches
func (c *SSM) DescribeInstancePatches(input *DescribeInstancePatchesInput) (*DescribeInstancePatchesOutput, error) {
req, out := c.DescribeInstancePatchesRequest(input)
err := req.Send()
return out, err
}
const opDescribeMaintenanceWindowExecutionTaskInvocations = "DescribeMaintenanceWindowExecutionTaskInvocations"
// DescribeMaintenanceWindowExecutionTaskInvocationsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeMaintenanceWindowExecutionTaskInvocations operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeMaintenanceWindowExecutionTaskInvocations for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeMaintenanceWindowExecutionTaskInvocations method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeMaintenanceWindowExecutionTaskInvocationsRequest method.
// req, resp := client.DescribeMaintenanceWindowExecutionTaskInvocationsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionTaskInvocations
func (c *SSM) DescribeMaintenanceWindowExecutionTaskInvocationsRequest(input *DescribeMaintenanceWindowExecutionTaskInvocationsInput) (req *request.Request, output *DescribeMaintenanceWindowExecutionTaskInvocationsOutput) {
op := &request.Operation{
Name: opDescribeMaintenanceWindowExecutionTaskInvocations,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeMaintenanceWindowExecutionTaskInvocationsInput{}
}
output = &DescribeMaintenanceWindowExecutionTaskInvocationsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// DescribeMaintenanceWindowExecutionTaskInvocations API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// Retrieves the individual task executions (one per target) for a particular
// task executed as part of a Maintenance Window execution.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeMaintenanceWindowExecutionTaskInvocations for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
2016-12-02 15:37:53 +01:00
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionTaskInvocations
func (c *SSM) DescribeMaintenanceWindowExecutionTaskInvocations(input *DescribeMaintenanceWindowExecutionTaskInvocationsInput) (*DescribeMaintenanceWindowExecutionTaskInvocationsOutput, error) {
req, out := c.DescribeMaintenanceWindowExecutionTaskInvocationsRequest(input)
err := req.Send()
return out, err
}
const opDescribeMaintenanceWindowExecutionTasks = "DescribeMaintenanceWindowExecutionTasks"
// DescribeMaintenanceWindowExecutionTasksRequest generates a "aws/request.Request" representing the
// client's request for the DescribeMaintenanceWindowExecutionTasks operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeMaintenanceWindowExecutionTasks for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeMaintenanceWindowExecutionTasks method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeMaintenanceWindowExecutionTasksRequest method.
// req, resp := client.DescribeMaintenanceWindowExecutionTasksRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionTasks
func (c *SSM) DescribeMaintenanceWindowExecutionTasksRequest(input *DescribeMaintenanceWindowExecutionTasksInput) (req *request.Request, output *DescribeMaintenanceWindowExecutionTasksOutput) {
op := &request.Operation{
Name: opDescribeMaintenanceWindowExecutionTasks,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeMaintenanceWindowExecutionTasksInput{}
}
output = &DescribeMaintenanceWindowExecutionTasksOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// DescribeMaintenanceWindowExecutionTasks API operation for Amazon Simple Systems Manager (SSM).
2016-10-17 23:21:08 +02:00
//
// For a given Maintenance Window execution, lists the tasks that were executed.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
2016-12-02 15:37:53 +01:00
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeMaintenanceWindowExecutionTasks for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
2016-12-02 15:37:53 +01:00
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
2016-10-17 23:21:08 +02:00
//
// * ErrCodeInternalServerError "InternalServerError"
2016-10-17 23:21:08 +02:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionTasks
func (c *SSM) DescribeMaintenanceWindowExecutionTasks(input *DescribeMaintenanceWindowExecutionTasksInput) (*DescribeMaintenanceWindowExecutionTasksOutput, error) {
req, out := c.DescribeMaintenanceWindowExecutionTasksRequest(input)
err := req.Send()
return out, err
}
const opDescribeMaintenanceWindowExecutions = "DescribeMaintenanceWindowExecutions"
// DescribeMaintenanceWindowExecutionsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeMaintenanceWindowExecutions operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeMaintenanceWindowExecutions for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeMaintenanceWindowExecutions method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeMaintenanceWindowExecutionsRequest method.
// req, resp := client.DescribeMaintenanceWindowExecutionsRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutions
func (c *SSM) DescribeMaintenanceWindowExecutionsRequest(input *DescribeMaintenanceWindowExecutionsInput) (req *request.Request, output *DescribeMaintenanceWindowExecutionsOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opDescribeMaintenanceWindowExecutions,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
2016-12-02 15:37:53 +01:00
if input == nil {
input = &DescribeMaintenanceWindowExecutionsInput{}
2016-12-02 15:37:53 +01:00
}
output = &DescribeMaintenanceWindowExecutionsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// DescribeMaintenanceWindowExecutions API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Lists the executions of a Maintenance Window (meaning, information about
// when the Maintenance Window was scheduled to be active and information about
// tasks registered and run with the Maintenance Window).
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeMaintenanceWindowExecutions for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutions
func (c *SSM) DescribeMaintenanceWindowExecutions(input *DescribeMaintenanceWindowExecutionsInput) (*DescribeMaintenanceWindowExecutionsOutput, error) {
req, out := c.DescribeMaintenanceWindowExecutionsRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opDescribeMaintenanceWindowTargets = "DescribeMaintenanceWindowTargets"
// DescribeMaintenanceWindowTargetsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeMaintenanceWindowTargets operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeMaintenanceWindowTargets for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeMaintenanceWindowTargets method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeMaintenanceWindowTargetsRequest method.
// req, resp := client.DescribeMaintenanceWindowTargetsRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowTargets
func (c *SSM) DescribeMaintenanceWindowTargetsRequest(input *DescribeMaintenanceWindowTargetsInput) (req *request.Request, output *DescribeMaintenanceWindowTargetsOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opDescribeMaintenanceWindowTargets,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
2016-12-02 15:37:53 +01:00
if input == nil {
input = &DescribeMaintenanceWindowTargetsInput{}
2016-12-02 15:37:53 +01:00
}
output = &DescribeMaintenanceWindowTargetsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// DescribeMaintenanceWindowTargets API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Lists the targets registered with the Maintenance Window.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeMaintenanceWindowTargets for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowTargets
func (c *SSM) DescribeMaintenanceWindowTargets(input *DescribeMaintenanceWindowTargetsInput) (*DescribeMaintenanceWindowTargetsOutput, error) {
req, out := c.DescribeMaintenanceWindowTargetsRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
2016-11-19 19:41:01 +01:00
}
const opDescribeMaintenanceWindowTasks = "DescribeMaintenanceWindowTasks"
2016-11-19 19:41:01 +01:00
// DescribeMaintenanceWindowTasksRequest generates a "aws/request.Request" representing the
// client's request for the DescribeMaintenanceWindowTasks operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeMaintenanceWindowTasks for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeMaintenanceWindowTasks method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeMaintenanceWindowTasksRequest method.
// req, resp := client.DescribeMaintenanceWindowTasksRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowTasks
func (c *SSM) DescribeMaintenanceWindowTasksRequest(input *DescribeMaintenanceWindowTasksInput) (req *request.Request, output *DescribeMaintenanceWindowTasksOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opDescribeMaintenanceWindowTasks,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeMaintenanceWindowTasksInput{}
2016-12-02 15:37:53 +01:00
}
output = &DescribeMaintenanceWindowTasksOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// DescribeMaintenanceWindowTasks API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Lists the tasks in a Maintenance Window.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeMaintenanceWindowTasks for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowTasks
func (c *SSM) DescribeMaintenanceWindowTasks(input *DescribeMaintenanceWindowTasksInput) (*DescribeMaintenanceWindowTasksOutput, error) {
req, out := c.DescribeMaintenanceWindowTasksRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opDescribeMaintenanceWindows = "DescribeMaintenanceWindows"
2016-12-02 15:37:53 +01:00
// DescribeMaintenanceWindowsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeMaintenanceWindows operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeMaintenanceWindows for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeMaintenanceWindows method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeMaintenanceWindowsRequest method.
// req, resp := client.DescribeMaintenanceWindowsRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindows
func (c *SSM) DescribeMaintenanceWindowsRequest(input *DescribeMaintenanceWindowsInput) (req *request.Request, output *DescribeMaintenanceWindowsOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opDescribeMaintenanceWindows,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeMaintenanceWindowsInput{}
2016-12-02 15:37:53 +01:00
}
output = &DescribeMaintenanceWindowsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// DescribeMaintenanceWindows API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Retrieves the Maintenance Windows in an AWS account.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeMaintenanceWindows for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindows
func (c *SSM) DescribeMaintenanceWindows(input *DescribeMaintenanceWindowsInput) (*DescribeMaintenanceWindowsOutput, error) {
req, out := c.DescribeMaintenanceWindowsRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opDescribeParameters = "DescribeParameters"
2016-12-02 15:37:53 +01:00
// DescribeParametersRequest generates a "aws/request.Request" representing the
// client's request for the DescribeParameters operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribeParameters for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeParameters method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeParametersRequest method.
// req, resp := client.DescribeParametersRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeParameters
func (c *SSM) DescribeParametersRequest(input *DescribeParametersInput) (req *request.Request, output *DescribeParametersOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opDescribeParameters,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeParametersInput{}
2016-12-02 15:37:53 +01:00
}
output = &DescribeParametersOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// DescribeParameters API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Get information about a parameter.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribeParameters for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidFilterValue "InvalidFilterValue"
// The filter value is not valid. Verify the value and try again.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
2016-12-02 15:37:53 +01:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeParameters
func (c *SSM) DescribeParameters(input *DescribeParametersInput) (*DescribeParametersOutput, error) {
req, out := c.DescribeParametersRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opDescribePatchBaselines = "DescribePatchBaselines"
2016-12-02 15:37:53 +01:00
// DescribePatchBaselinesRequest generates a "aws/request.Request" representing the
// client's request for the DescribePatchBaselines operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribePatchBaselines for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribePatchBaselines method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribePatchBaselinesRequest method.
// req, resp := client.DescribePatchBaselinesRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchBaselines
func (c *SSM) DescribePatchBaselinesRequest(input *DescribePatchBaselinesInput) (req *request.Request, output *DescribePatchBaselinesOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opDescribePatchBaselines,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribePatchBaselinesInput{}
2016-12-02 15:37:53 +01:00
}
output = &DescribePatchBaselinesOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// DescribePatchBaselines API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Lists the patch baselines in your AWS account.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribePatchBaselines for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchBaselines
func (c *SSM) DescribePatchBaselines(input *DescribePatchBaselinesInput) (*DescribePatchBaselinesOutput, error) {
req, out := c.DescribePatchBaselinesRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opDescribePatchGroupState = "DescribePatchGroupState"
2016-12-02 15:37:53 +01:00
// DescribePatchGroupStateRequest generates a "aws/request.Request" representing the
// client's request for the DescribePatchGroupState operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribePatchGroupState for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribePatchGroupState method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribePatchGroupStateRequest method.
// req, resp := client.DescribePatchGroupStateRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupState
func (c *SSM) DescribePatchGroupStateRequest(input *DescribePatchGroupStateInput) (req *request.Request, output *DescribePatchGroupStateOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opDescribePatchGroupState,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribePatchGroupStateInput{}
2016-12-02 15:37:53 +01:00
}
output = &DescribePatchGroupStateOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// DescribePatchGroupState API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Returns high-level aggregated patch compliance state for a patch group.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribePatchGroupState for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
2016-12-02 15:37:53 +01:00
// The specified token is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupState
func (c *SSM) DescribePatchGroupState(input *DescribePatchGroupStateInput) (*DescribePatchGroupStateOutput, error) {
req, out := c.DescribePatchGroupStateRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opDescribePatchGroups = "DescribePatchGroups"
2016-12-02 15:37:53 +01:00
// DescribePatchGroupsRequest generates a "aws/request.Request" representing the
// client's request for the DescribePatchGroups operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribePatchGroups for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribePatchGroups method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribePatchGroupsRequest method.
// req, resp := client.DescribePatchGroupsRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroups
func (c *SSM) DescribePatchGroupsRequest(input *DescribePatchGroupsInput) (req *request.Request, output *DescribePatchGroupsOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opDescribePatchGroups,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribePatchGroupsInput{}
2016-12-02 15:37:53 +01:00
}
output = &DescribePatchGroupsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// DescribePatchGroups API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Lists all patch groups that have been registered with patch baselines.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation DescribePatchGroups for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroups
func (c *SSM) DescribePatchGroups(input *DescribePatchGroupsInput) (*DescribePatchGroupsOutput, error) {
req, out := c.DescribePatchGroupsRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetAutomationExecution = "GetAutomationExecution"
2016-12-02 15:37:53 +01:00
// GetAutomationExecutionRequest generates a "aws/request.Request" representing the
// client's request for the GetAutomationExecution operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetAutomationExecution for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetAutomationExecution method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetAutomationExecutionRequest method.
// req, resp := client.GetAutomationExecutionRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAutomationExecution
func (c *SSM) GetAutomationExecutionRequest(input *GetAutomationExecutionInput) (req *request.Request, output *GetAutomationExecutionOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetAutomationExecution,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetAutomationExecutionInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetAutomationExecutionOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetAutomationExecution API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Get detailed information about a particular Automation execution.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetAutomationExecution for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeAutomationExecutionNotFoundException "AutomationExecutionNotFoundException"
// There is no automation execution information for the requested automation
// execution ID.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAutomationExecution
func (c *SSM) GetAutomationExecution(input *GetAutomationExecutionInput) (*GetAutomationExecutionOutput, error) {
req, out := c.GetAutomationExecutionRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetCommandInvocation = "GetCommandInvocation"
2016-12-02 15:37:53 +01:00
// GetCommandInvocationRequest generates a "aws/request.Request" representing the
// client's request for the GetCommandInvocation operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetCommandInvocation for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetCommandInvocation method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetCommandInvocationRequest method.
// req, resp := client.GetCommandInvocationRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetCommandInvocation
func (c *SSM) GetCommandInvocationRequest(input *GetCommandInvocationInput) (req *request.Request, output *GetCommandInvocationOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetCommandInvocation,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetCommandInvocationInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetCommandInvocationOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetCommandInvocation API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Returns detailed information about command execution for an invocation or
// plugin.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetCommandInvocation for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidCommandId "InvalidCommandId"
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidPluginName "InvalidPluginName"
// The plugin name is not valid.
//
// * ErrCodeInvocationDoesNotExist "InvocationDoesNotExist"
// The command ID and instance ID you specified did not match any invocations.
// Verify the command ID adn the instance ID and try again.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetCommandInvocation
func (c *SSM) GetCommandInvocation(input *GetCommandInvocationInput) (*GetCommandInvocationOutput, error) {
req, out := c.GetCommandInvocationRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetDefaultPatchBaseline = "GetDefaultPatchBaseline"
2016-12-02 15:37:53 +01:00
// GetDefaultPatchBaselineRequest generates a "aws/request.Request" representing the
// client's request for the GetDefaultPatchBaseline operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetDefaultPatchBaseline for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetDefaultPatchBaseline method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetDefaultPatchBaselineRequest method.
// req, resp := client.GetDefaultPatchBaselineRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline
func (c *SSM) GetDefaultPatchBaselineRequest(input *GetDefaultPatchBaselineInput) (req *request.Request, output *GetDefaultPatchBaselineOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetDefaultPatchBaseline,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetDefaultPatchBaselineInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetDefaultPatchBaselineOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetDefaultPatchBaseline API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Retrieves the default patch baseline.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetDefaultPatchBaseline for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline
func (c *SSM) GetDefaultPatchBaseline(input *GetDefaultPatchBaselineInput) (*GetDefaultPatchBaselineOutput, error) {
req, out := c.GetDefaultPatchBaselineRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetDeployablePatchSnapshotForInstance = "GetDeployablePatchSnapshotForInstance"
2016-12-02 15:37:53 +01:00
// GetDeployablePatchSnapshotForInstanceRequest generates a "aws/request.Request" representing the
// client's request for the GetDeployablePatchSnapshotForInstance operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetDeployablePatchSnapshotForInstance for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetDeployablePatchSnapshotForInstance method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetDeployablePatchSnapshotForInstanceRequest method.
// req, resp := client.GetDeployablePatchSnapshotForInstanceRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDeployablePatchSnapshotForInstance
func (c *SSM) GetDeployablePatchSnapshotForInstanceRequest(input *GetDeployablePatchSnapshotForInstanceInput) (req *request.Request, output *GetDeployablePatchSnapshotForInstanceOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetDeployablePatchSnapshotForInstance,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetDeployablePatchSnapshotForInstanceInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetDeployablePatchSnapshotForInstanceOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetDeployablePatchSnapshotForInstance API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Retrieves the current snapshot for the patch baseline the instance uses.
// This API is primarily used by the AWS-ApplyPatchBaseline Systems Manager
// document.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetDeployablePatchSnapshotForInstance for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDeployablePatchSnapshotForInstance
func (c *SSM) GetDeployablePatchSnapshotForInstance(input *GetDeployablePatchSnapshotForInstanceInput) (*GetDeployablePatchSnapshotForInstanceOutput, error) {
req, out := c.GetDeployablePatchSnapshotForInstanceRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetDocument = "GetDocument"
2016-12-02 15:37:53 +01:00
// GetDocumentRequest generates a "aws/request.Request" representing the
// client's request for the GetDocument operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetDocument for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetDocument method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetDocumentRequest method.
// req, resp := client.GetDocumentRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDocument
func (c *SSM) GetDocumentRequest(input *GetDocumentInput) (req *request.Request, output *GetDocumentOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetDocument,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetDocumentInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetDocumentOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetDocument API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Gets the contents of the specified SSM document.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetDocument for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidDocument "InvalidDocument"
// The specified document does not exist.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidDocumentVersion "InvalidDocumentVersion"
// The document version is not valid or does not exist.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDocument
func (c *SSM) GetDocument(input *GetDocumentInput) (*GetDocumentOutput, error) {
req, out := c.GetDocumentRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetInventory = "GetInventory"
2016-12-02 15:37:53 +01:00
// GetInventoryRequest generates a "aws/request.Request" representing the
// client's request for the GetInventory operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetInventory for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetInventory method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetInventoryRequest method.
// req, resp := client.GetInventoryRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetInventory
func (c *SSM) GetInventoryRequest(input *GetInventoryInput) (req *request.Request, output *GetInventoryOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetInventory,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetInventoryInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetInventoryOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetInventory API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Query inventory information.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetInventory for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidFilter "InvalidFilter"
// The filter name is not valid. Verify the you entered the correct name and
// try again.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
2016-12-02 15:37:53 +01:00
// The specified token is not valid.
//
// * ErrCodeInvalidTypeNameException "InvalidTypeNameException"
// The parameter type name is not valid.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidResultAttributeException "InvalidResultAttributeException"
// The specified inventory item result attribute is not valid.
2016-12-02 15:37:53 +01:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetInventory
func (c *SSM) GetInventory(input *GetInventoryInput) (*GetInventoryOutput, error) {
req, out := c.GetInventoryRequest(input)
err := req.Send()
return out, err
2016-12-02 15:37:53 +01:00
}
const opGetInventorySchema = "GetInventorySchema"
2016-12-02 15:37:53 +01:00
// GetInventorySchemaRequest generates a "aws/request.Request" representing the
// client's request for the GetInventorySchema operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetInventorySchema for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetInventorySchema method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetInventorySchemaRequest method.
// req, resp := client.GetInventorySchemaRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetInventorySchema
func (c *SSM) GetInventorySchemaRequest(input *GetInventorySchemaInput) (req *request.Request, output *GetInventorySchemaOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetInventorySchema,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetInventorySchemaInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetInventorySchemaOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetInventorySchema API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Return a list of inventory type names for the account, or return a list of
// attribute names for a specific Inventory item type.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetInventorySchema for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidTypeNameException "InvalidTypeNameException"
// The parameter type name is not valid.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
2016-12-02 15:37:53 +01:00
// The specified token is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetInventorySchema
func (c *SSM) GetInventorySchema(input *GetInventorySchemaInput) (*GetInventorySchemaOutput, error) {
req, out := c.GetInventorySchemaRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetMaintenanceWindow = "GetMaintenanceWindow"
2016-12-02 15:37:53 +01:00
// GetMaintenanceWindowRequest generates a "aws/request.Request" representing the
// client's request for the GetMaintenanceWindow operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetMaintenanceWindow for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetMaintenanceWindow method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetMaintenanceWindowRequest method.
// req, resp := client.GetMaintenanceWindowRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindow
func (c *SSM) GetMaintenanceWindowRequest(input *GetMaintenanceWindowInput) (req *request.Request, output *GetMaintenanceWindowOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetMaintenanceWindow,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetMaintenanceWindowInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetMaintenanceWindowOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetMaintenanceWindow API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Retrieves a Maintenance Window.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetMaintenanceWindow for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindow
func (c *SSM) GetMaintenanceWindow(input *GetMaintenanceWindowInput) (*GetMaintenanceWindowOutput, error) {
req, out := c.GetMaintenanceWindowRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetMaintenanceWindowExecution = "GetMaintenanceWindowExecution"
2016-12-02 15:37:53 +01:00
// GetMaintenanceWindowExecutionRequest generates a "aws/request.Request" representing the
// client's request for the GetMaintenanceWindowExecution operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetMaintenanceWindowExecution for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetMaintenanceWindowExecution method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetMaintenanceWindowExecutionRequest method.
// req, resp := client.GetMaintenanceWindowExecutionRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecution
func (c *SSM) GetMaintenanceWindowExecutionRequest(input *GetMaintenanceWindowExecutionInput) (req *request.Request, output *GetMaintenanceWindowExecutionOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetMaintenanceWindowExecution,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetMaintenanceWindowExecutionInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetMaintenanceWindowExecutionOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetMaintenanceWindowExecution API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Retrieves details about a specific task executed as part of a Maintenance
// Window execution.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetMaintenanceWindowExecution for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecution
func (c *SSM) GetMaintenanceWindowExecution(input *GetMaintenanceWindowExecutionInput) (*GetMaintenanceWindowExecutionOutput, error) {
req, out := c.GetMaintenanceWindowExecutionRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetMaintenanceWindowExecutionTask = "GetMaintenanceWindowExecutionTask"
// GetMaintenanceWindowExecutionTaskRequest generates a "aws/request.Request" representing the
// client's request for the GetMaintenanceWindowExecutionTask operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
2016-12-02 15:37:53 +01:00
//
// See GetMaintenanceWindowExecutionTask for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetMaintenanceWindowExecutionTask method directly
// instead.
2016-12-02 15:37:53 +01:00
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetMaintenanceWindowExecutionTaskRequest method.
// req, resp := client.GetMaintenanceWindowExecutionTaskRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecutionTask
func (c *SSM) GetMaintenanceWindowExecutionTaskRequest(input *GetMaintenanceWindowExecutionTaskInput) (req *request.Request, output *GetMaintenanceWindowExecutionTaskOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetMaintenanceWindowExecutionTask,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetMaintenanceWindowExecutionTaskInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetMaintenanceWindowExecutionTaskOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetMaintenanceWindowExecutionTask API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Retrieves the details about a specific task executed as part of a Maintenance
// Window execution.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetMaintenanceWindowExecutionTask for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecutionTask
func (c *SSM) GetMaintenanceWindowExecutionTask(input *GetMaintenanceWindowExecutionTaskInput) (*GetMaintenanceWindowExecutionTaskOutput, error) {
req, out := c.GetMaintenanceWindowExecutionTaskRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetParameterHistory = "GetParameterHistory"
2016-12-02 15:37:53 +01:00
// GetParameterHistoryRequest generates a "aws/request.Request" representing the
// client's request for the GetParameterHistory operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetParameterHistory for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetParameterHistory method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetParameterHistoryRequest method.
// req, resp := client.GetParameterHistoryRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParameterHistory
func (c *SSM) GetParameterHistoryRequest(input *GetParameterHistoryInput) (req *request.Request, output *GetParameterHistoryOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetParameterHistory,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetParameterHistoryInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetParameterHistoryOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetParameterHistory API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Query a list of all parameters used by the AWS account.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetParameterHistory for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeParameterNotFound "ParameterNotFound"
// The parameter could not be found. Verify the name and try again.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParameterHistory
func (c *SSM) GetParameterHistory(input *GetParameterHistoryInput) (*GetParameterHistoryOutput, error) {
req, out := c.GetParameterHistoryRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetParameters = "GetParameters"
2016-12-02 15:37:53 +01:00
// GetParametersRequest generates a "aws/request.Request" representing the
// client's request for the GetParameters operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetParameters for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetParameters method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetParametersRequest method.
// req, resp := client.GetParametersRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParameters
func (c *SSM) GetParametersRequest(input *GetParametersInput) (req *request.Request, output *GetParametersOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetParameters,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetParametersInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetParametersOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetParameters API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Get a list of parameters used by the AWS account.>
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetParameters for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParameters
func (c *SSM) GetParameters(input *GetParametersInput) (*GetParametersOutput, error) {
req, out := c.GetParametersRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetPatchBaseline = "GetPatchBaseline"
2016-12-02 15:37:53 +01:00
// GetPatchBaselineRequest generates a "aws/request.Request" representing the
// client's request for the GetPatchBaseline operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetPatchBaseline for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetPatchBaseline method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetPatchBaselineRequest method.
// req, resp := client.GetPatchBaselineRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaseline
func (c *SSM) GetPatchBaselineRequest(input *GetPatchBaselineInput) (req *request.Request, output *GetPatchBaselineOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetPatchBaseline,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetPatchBaselineInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetPatchBaselineOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetPatchBaseline API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Retrieves information about a patch baseline.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetPatchBaseline for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidResourceId "InvalidResourceId"
// The resource ID is not valid. Verify that you entered the correct ID and
// try again.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
2016-12-02 15:37:53 +01:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaseline
func (c *SSM) GetPatchBaseline(input *GetPatchBaselineInput) (*GetPatchBaselineOutput, error) {
req, out := c.GetPatchBaselineRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opGetPatchBaselineForPatchGroup = "GetPatchBaselineForPatchGroup"
2016-12-02 15:37:53 +01:00
// GetPatchBaselineForPatchGroupRequest generates a "aws/request.Request" representing the
// client's request for the GetPatchBaselineForPatchGroup operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetPatchBaselineForPatchGroup for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetPatchBaselineForPatchGroup method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetPatchBaselineForPatchGroupRequest method.
// req, resp := client.GetPatchBaselineForPatchGroupRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup
func (c *SSM) GetPatchBaselineForPatchGroupRequest(input *GetPatchBaselineForPatchGroupInput) (req *request.Request, output *GetPatchBaselineForPatchGroupOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opGetPatchBaselineForPatchGroup,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetPatchBaselineForPatchGroupInput{}
2016-12-02 15:37:53 +01:00
}
output = &GetPatchBaselineForPatchGroupOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// GetPatchBaselineForPatchGroup API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Retrieves the patch baseline that should be used for the specified patch
// group.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation GetPatchBaselineForPatchGroup for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup
func (c *SSM) GetPatchBaselineForPatchGroup(input *GetPatchBaselineForPatchGroupInput) (*GetPatchBaselineForPatchGroupOutput, error) {
req, out := c.GetPatchBaselineForPatchGroupRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opListAssociations = "ListAssociations"
2016-12-02 15:37:53 +01:00
// ListAssociationsRequest generates a "aws/request.Request" representing the
// client's request for the ListAssociations operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ListAssociations for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListAssociations method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListAssociationsRequest method.
// req, resp := client.ListAssociationsRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociations
func (c *SSM) ListAssociationsRequest(input *ListAssociationsInput) (req *request.Request, output *ListAssociationsOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opListAssociations,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "MaxResults",
TruncationToken: "",
},
2016-12-02 15:37:53 +01:00
}
if input == nil {
input = &ListAssociationsInput{}
2016-12-02 15:37:53 +01:00
}
output = &ListAssociationsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// ListAssociations API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Lists the associations for the specified SSM document or instance.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation ListAssociations for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociations
func (c *SSM) ListAssociations(input *ListAssociationsInput) (*ListAssociationsOutput, error) {
req, out := c.ListAssociationsRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
// ListAssociationsPages iterates over the pages of a ListAssociations operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListAssociations method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListAssociations operation.
// pageNum := 0
// err := client.ListAssociationsPages(params,
// func(page *ListAssociationsOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
func (c *SSM) ListAssociationsPages(input *ListAssociationsInput, fn func(p *ListAssociationsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListAssociationsRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListAssociationsOutput), lastPage)
})
}
2016-12-02 15:37:53 +01:00
const opListCommandInvocations = "ListCommandInvocations"
// ListCommandInvocationsRequest generates a "aws/request.Request" representing the
// client's request for the ListCommandInvocations operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ListCommandInvocations for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListCommandInvocations method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListCommandInvocationsRequest method.
// req, resp := client.ListCommandInvocationsRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommandInvocations
func (c *SSM) ListCommandInvocationsRequest(input *ListCommandInvocationsInput) (req *request.Request, output *ListCommandInvocationsOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opListCommandInvocations,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "MaxResults",
TruncationToken: "",
},
2016-12-02 15:37:53 +01:00
}
if input == nil {
input = &ListCommandInvocationsInput{}
2016-12-02 15:37:53 +01:00
}
output = &ListCommandInvocationsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// ListCommandInvocations API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// An invocation is copy of a command sent to a specific instance. A command
// can apply to one or more instances. A command invocation applies to one instance.
// For example, if a user executes SendCommand against three instances, then
// a command invocation is created for each requested instance ID. ListCommandInvocations
// provide status about command execution.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation ListCommandInvocations for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidCommandId "InvalidCommandId"
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
// The following problems can cause this exception:
2016-12-02 15:37:53 +01:00
//
// You do not have permission to access the instance.
2016-12-02 15:37:53 +01:00
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidFilterKey "InvalidFilterKey"
// The specified key is not valid.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommandInvocations
func (c *SSM) ListCommandInvocations(input *ListCommandInvocationsInput) (*ListCommandInvocationsOutput, error) {
req, out := c.ListCommandInvocationsRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
// ListCommandInvocationsPages iterates over the pages of a ListCommandInvocations operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListCommandInvocations method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListCommandInvocations operation.
// pageNum := 0
// err := client.ListCommandInvocationsPages(params,
// func(page *ListCommandInvocationsOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
func (c *SSM) ListCommandInvocationsPages(input *ListCommandInvocationsInput, fn func(p *ListCommandInvocationsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListCommandInvocationsRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListCommandInvocationsOutput), lastPage)
})
}
2016-12-02 15:37:53 +01:00
const opListCommands = "ListCommands"
// ListCommandsRequest generates a "aws/request.Request" representing the
// client's request for the ListCommands operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ListCommands for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListCommands method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListCommandsRequest method.
// req, resp := client.ListCommandsRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommands
func (c *SSM) ListCommandsRequest(input *ListCommandsInput) (req *request.Request, output *ListCommandsOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opListCommands,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "MaxResults",
TruncationToken: "",
},
2016-12-02 15:37:53 +01:00
}
if input == nil {
input = &ListCommandsInput{}
2016-12-02 15:37:53 +01:00
}
output = &ListCommandsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// ListCommands API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Lists the commands requested by users of the AWS account.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation ListCommands for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidCommandId "InvalidCommandId"
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
// The following problems can cause this exception:
2016-12-02 15:37:53 +01:00
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidFilterKey "InvalidFilterKey"
// The specified key is not valid.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
2016-12-02 15:37:53 +01:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommands
func (c *SSM) ListCommands(input *ListCommandsInput) (*ListCommandsOutput, error) {
req, out := c.ListCommandsRequest(input)
err := req.Send()
return out, err
}
// ListCommandsPages iterates over the pages of a ListCommands operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
2016-12-02 15:37:53 +01:00
//
// See ListCommands method for more information on how to use this operation.
2016-12-02 15:37:53 +01:00
//
// Note: This operation can generate multiple requests to a service.
2016-12-02 15:37:53 +01:00
//
// // Example iterating over at most 3 pages of a ListCommands operation.
// pageNum := 0
// err := client.ListCommandsPages(params,
// func(page *ListCommandsOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
2016-12-02 15:37:53 +01:00
//
func (c *SSM) ListCommandsPages(input *ListCommandsInput, fn func(p *ListCommandsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListCommandsRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListCommandsOutput), lastPage)
})
2016-12-02 15:37:53 +01:00
}
const opListDocumentVersions = "ListDocumentVersions"
2016-12-02 15:37:53 +01:00
// ListDocumentVersionsRequest generates a "aws/request.Request" representing the
// client's request for the ListDocumentVersions operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ListDocumentVersions for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListDocumentVersions method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListDocumentVersionsRequest method.
// req, resp := client.ListDocumentVersionsRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocumentVersions
func (c *SSM) ListDocumentVersionsRequest(input *ListDocumentVersionsInput) (req *request.Request, output *ListDocumentVersionsOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opListDocumentVersions,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListDocumentVersionsInput{}
2016-12-02 15:37:53 +01:00
}
output = &ListDocumentVersionsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// ListDocumentVersions API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// List all versions for a document.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation ListDocumentVersions for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
//
// * ErrCodeInvalidDocument "InvalidDocument"
// The specified document does not exist.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocumentVersions
func (c *SSM) ListDocumentVersions(input *ListDocumentVersionsInput) (*ListDocumentVersionsOutput, error) {
req, out := c.ListDocumentVersionsRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opListDocuments = "ListDocuments"
2016-12-02 15:37:53 +01:00
// ListDocumentsRequest generates a "aws/request.Request" representing the
// client's request for the ListDocuments operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ListDocuments for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListDocuments method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListDocumentsRequest method.
// req, resp := client.ListDocumentsRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocuments
func (c *SSM) ListDocumentsRequest(input *ListDocumentsInput) (req *request.Request, output *ListDocumentsOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opListDocuments,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "MaxResults",
TruncationToken: "",
},
2016-12-02 15:37:53 +01:00
}
if input == nil {
input = &ListDocumentsInput{}
2016-12-02 15:37:53 +01:00
}
output = &ListDocumentsOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// ListDocuments API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Describes one or more of your SSM documents.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation ListDocuments for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
//
// * ErrCodeInvalidFilterKey "InvalidFilterKey"
// The specified key is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocuments
func (c *SSM) ListDocuments(input *ListDocumentsInput) (*ListDocumentsOutput, error) {
req, out := c.ListDocumentsRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
// ListDocumentsPages iterates over the pages of a ListDocuments operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListDocuments method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListDocuments operation.
// pageNum := 0
// err := client.ListDocumentsPages(params,
// func(page *ListDocumentsOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
func (c *SSM) ListDocumentsPages(input *ListDocumentsInput, fn func(p *ListDocumentsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListDocumentsRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListDocumentsOutput), lastPage)
})
}
2016-12-02 15:37:53 +01:00
const opListInventoryEntries = "ListInventoryEntries"
// ListInventoryEntriesRequest generates a "aws/request.Request" representing the
// client's request for the ListInventoryEntries operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ListInventoryEntries for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListInventoryEntries method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListInventoryEntriesRequest method.
// req, resp := client.ListInventoryEntriesRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListInventoryEntries
func (c *SSM) ListInventoryEntriesRequest(input *ListInventoryEntriesInput) (req *request.Request, output *ListInventoryEntriesOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opListInventoryEntries,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListInventoryEntriesInput{}
2016-12-02 15:37:53 +01:00
}
output = &ListInventoryEntriesOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// ListInventoryEntries API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// A list of inventory items returned by the request.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation ListInventoryEntries for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
2016-12-02 15:37:53 +01:00
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidTypeNameException "InvalidTypeNameException"
// The parameter type name is not valid.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidFilter "InvalidFilter"
// The filter name is not valid. Verify the you entered the correct name and
// try again.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidNextToken "InvalidNextToken"
// The specified token is not valid.
2016-12-02 15:37:53 +01:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListInventoryEntries
func (c *SSM) ListInventoryEntries(input *ListInventoryEntriesInput) (*ListInventoryEntriesOutput, error) {
req, out := c.ListInventoryEntriesRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opListTagsForResource = "ListTagsForResource"
2016-12-02 15:37:53 +01:00
// ListTagsForResourceRequest generates a "aws/request.Request" representing the
// client's request for the ListTagsForResource operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ListTagsForResource for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListTagsForResource method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListTagsForResourceRequest method.
// req, resp := client.ListTagsForResourceRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListTagsForResource
func (c *SSM) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opListTagsForResource,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListTagsForResourceInput{}
2016-12-02 15:37:53 +01:00
}
output = &ListTagsForResourceOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// ListTagsForResource API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Returns a list of the tags assigned to the specified resource.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation ListTagsForResource for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInvalidResourceType "InvalidResourceType"
// The resource type is not valid. If you are attempting to tag an instance,
// the instance must be a registered, managed instance.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidResourceId "InvalidResourceId"
// The resource ID is not valid. Verify that you entered the correct ID and
// try again.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListTagsForResource
func (c *SSM) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error) {
req, out := c.ListTagsForResourceRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opModifyDocumentPermission = "ModifyDocumentPermission"
2016-12-02 15:37:53 +01:00
// ModifyDocumentPermissionRequest generates a "aws/request.Request" representing the
// client's request for the ModifyDocumentPermission operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ModifyDocumentPermission for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ModifyDocumentPermission method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ModifyDocumentPermissionRequest method.
// req, resp := client.ModifyDocumentPermissionRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ModifyDocumentPermission
func (c *SSM) ModifyDocumentPermissionRequest(input *ModifyDocumentPermissionInput) (req *request.Request, output *ModifyDocumentPermissionOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opModifyDocumentPermission,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ModifyDocumentPermissionInput{}
2016-12-02 15:37:53 +01:00
}
output = &ModifyDocumentPermissionOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// ModifyDocumentPermission API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Share a document publicly or privately. If you share a document privately,
// you must specify the AWS user account IDs for those people who can use the
// document. If you share a document publicly, you must specify All as the account
// ID.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation ModifyDocumentPermission for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidDocument "InvalidDocument"
2016-12-02 15:37:53 +01:00
// The specified document does not exist.
//
// * ErrCodeInvalidPermissionType "InvalidPermissionType"
// The permission type is not supported. Share is the only supported permission
// type.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeDocumentPermissionLimit "DocumentPermissionLimit"
// The document cannot be shared with more AWS user accounts. You can share
// a document with a maximum of 20 accounts. You can publicly share up to five
// documents. If you need to increase this limit, contact AWS Support.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeDocumentLimitExceeded "DocumentLimitExceeded"
// You can have at most 200 active SSM documents.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ModifyDocumentPermission
func (c *SSM) ModifyDocumentPermission(input *ModifyDocumentPermissionInput) (*ModifyDocumentPermissionOutput, error) {
req, out := c.ModifyDocumentPermissionRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opPutInventory = "PutInventory"
2016-12-02 15:37:53 +01:00
// PutInventoryRequest generates a "aws/request.Request" representing the
// client's request for the PutInventory operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See PutInventory for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the PutInventory method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the PutInventoryRequest method.
// req, resp := client.PutInventoryRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutInventory
func (c *SSM) PutInventoryRequest(input *PutInventoryInput) (req *request.Request, output *PutInventoryOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opPutInventory,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutInventoryInput{}
2016-12-02 15:37:53 +01:00
}
output = &PutInventoryOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// PutInventory API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Bulk update custom inventory items on one more instance. The request adds
// an inventory item, if it doesn't already exist, or updates an inventory item,
// if it does exist.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation PutInventory for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
2016-12-02 15:37:53 +01:00
// An error occurred on the server side.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidTypeNameException "InvalidTypeNameException"
// The parameter type name is not valid.
//
// * ErrCodeInvalidItemContentException "InvalidItemContentException"
// One or more content items is not valid.
//
// * ErrCodeTotalSizeLimitExceededException "TotalSizeLimitExceededException"
// The size of inventory data has exceeded the total size limit for the resource.
//
// * ErrCodeItemSizeLimitExceededException "ItemSizeLimitExceededException"
// The inventory item size has exceeded the size limit.
//
// * ErrCodeItemContentMismatchException "ItemContentMismatchException"
// The inventory item has invalid content.
//
// * ErrCodeCustomSchemaCountLimitExceededException "CustomSchemaCountLimitExceededException"
// You have exceeded the limit for custom schemas. Delete one or more custom
// schemas and try again.
//
// * ErrCodeUnsupportedInventorySchemaVersionException "UnsupportedInventorySchemaVersionException"
// Inventory item type schema version has to match supported versions in the
// service. Check output of GetInventorySchema to see the available schema version
// for each type.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutInventory
func (c *SSM) PutInventory(input *PutInventoryInput) (*PutInventoryOutput, error) {
req, out := c.PutInventoryRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opPutParameter = "PutParameter"
2016-12-02 15:37:53 +01:00
// PutParameterRequest generates a "aws/request.Request" representing the
// client's request for the PutParameter operation. The "output" return
2016-12-02 15:37:53 +01:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See PutParameter for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the PutParameter method directly
2016-12-02 15:37:53 +01:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the PutParameterRequest method.
// req, resp := client.PutParameterRequest(params)
2016-12-02 15:37:53 +01:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameter
func (c *SSM) PutParameterRequest(input *PutParameterInput) (req *request.Request, output *PutParameterOutput) {
2016-12-02 15:37:53 +01:00
op := &request.Operation{
Name: opPutParameter,
2016-12-02 15:37:53 +01:00
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutParameterInput{}
2016-12-02 15:37:53 +01:00
}
output = &PutParameterOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
2016-12-02 15:37:53 +01:00
return
}
// PutParameter API operation for Amazon Simple Systems Manager (SSM).
2016-12-02 15:37:53 +01:00
//
// Add one or more paramaters to the system.
2016-12-02 15:37:53 +01:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation PutParameter for usage and error information.
2016-12-02 15:37:53 +01:00
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeInvalidKeyId "InvalidKeyId"
// The query key ID is not valid.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeParameterLimitExceeded "ParameterLimitExceeded"
// You have exceeded the number of parameters for this AWS account. Delete one
// or more parameters and try again.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeTooManyUpdates "TooManyUpdates"
// There are concurrent updates for a resource that supports one update at a
// time.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeParameterAlreadyExists "ParameterAlreadyExists"
// The parameter already exists. You can't create duplicate parameters.
2016-12-02 15:37:53 +01:00
//
// * ErrCodeUnsupportedParameterType "UnsupportedParameterType"
// The parameter type is not supported.
2016-12-02 15:37:53 +01:00
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameter
func (c *SSM) PutParameter(input *PutParameterInput) (*PutParameterOutput, error) {
req, out := c.PutParameterRequest(input)
2016-12-02 15:37:53 +01:00
err := req.Send()
return out, err
}
const opRegisterDefaultPatchBaseline = "RegisterDefaultPatchBaseline"
2016-12-02 15:37:53 +01:00
// RegisterDefaultPatchBaselineRequest generates a "aws/request.Request" representing the
// client's request for the RegisterDefaultPatchBaseline operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See RegisterDefaultPatchBaseline for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the RegisterDefaultPatchBaseline method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the RegisterDefaultPatchBaselineRequest method.
// req, resp := client.RegisterDefaultPatchBaselineRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterDefaultPatchBaseline
func (c *SSM) RegisterDefaultPatchBaselineRequest(input *RegisterDefaultPatchBaselineInput) (req *request.Request, output *RegisterDefaultPatchBaselineOutput) {
op := &request.Operation{
Name: opRegisterDefaultPatchBaseline,
HTTPMethod: "POST",
HTTPPath: "/",
}
2016-12-02 15:37:53 +01:00
if input == nil {
input = &RegisterDefaultPatchBaselineInput{}
}
2016-12-02 15:37:53 +01:00
output = &RegisterDefaultPatchBaselineOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
2016-12-02 15:37:53 +01:00
// RegisterDefaultPatchBaseline API operation for Amazon Simple Systems Manager (SSM).
//
// Defines the default patch baseline.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation RegisterDefaultPatchBaseline for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInvalidResourceId "InvalidResourceId"
// The resource ID is not valid. Verify that you entered the correct ID and
// try again.
//
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterDefaultPatchBaseline
func (c *SSM) RegisterDefaultPatchBaseline(input *RegisterDefaultPatchBaselineInput) (*RegisterDefaultPatchBaselineOutput, error) {
req, out := c.RegisterDefaultPatchBaselineRequest(input)
err := req.Send()
return out, err
}
2016-12-02 15:37:53 +01:00
const opRegisterPatchBaselineForPatchGroup = "RegisterPatchBaselineForPatchGroup"
2016-12-02 15:37:53 +01:00
// RegisterPatchBaselineForPatchGroupRequest generates a "aws/request.Request" representing the
// client's request for the RegisterPatchBaselineForPatchGroup operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See RegisterPatchBaselineForPatchGroup for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the RegisterPatchBaselineForPatchGroup method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the RegisterPatchBaselineForPatchGroupRequest method.
// req, resp := client.RegisterPatchBaselineForPatchGroupRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterPatchBaselineForPatchGroup
func (c *SSM) RegisterPatchBaselineForPatchGroupRequest(input *RegisterPatchBaselineForPatchGroupInput) (req *request.Request, output *RegisterPatchBaselineForPatchGroupOutput) {
op := &request.Operation{
Name: opRegisterPatchBaselineForPatchGroup,
HTTPMethod: "POST",
HTTPPath: "/",
}
2016-12-02 15:37:53 +01:00
if input == nil {
input = &RegisterPatchBaselineForPatchGroupInput{}
}
2016-12-02 15:37:53 +01:00
output = &RegisterPatchBaselineForPatchGroupOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
2016-12-02 15:37:53 +01:00
}
// RegisterPatchBaselineForPatchGroup API operation for Amazon Simple Systems Manager (SSM).
//
// Registers a patch baseline for a patch group.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation RegisterPatchBaselineForPatchGroup for usage and error information.
//
// Returned Error Codes:
// * ErrCodeAlreadyExistsException "AlreadyExistsException"
// Error returned if an attempt is made to register a patch group with a patch
// baseline that is already registered with a different patch baseline.
//
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInvalidResourceId "InvalidResourceId"
// The resource ID is not valid. Verify that you entered the correct ID and
// try again.
//
// * ErrCodeResourceLimitExceededException "ResourceLimitExceededException"
// Error returned when the caller has exceeded the default resource limits (e.g.
// too many Maintenance Windows have been created).
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterPatchBaselineForPatchGroup
func (c *SSM) RegisterPatchBaselineForPatchGroup(input *RegisterPatchBaselineForPatchGroupInput) (*RegisterPatchBaselineForPatchGroupOutput, error) {
req, out := c.RegisterPatchBaselineForPatchGroupRequest(input)
err := req.Send()
return out, err
2016-12-02 15:37:53 +01:00
}
const opRegisterTargetWithMaintenanceWindow = "RegisterTargetWithMaintenanceWindow"
2016-12-02 15:37:53 +01:00
// RegisterTargetWithMaintenanceWindowRequest generates a "aws/request.Request" representing the
// client's request for the RegisterTargetWithMaintenanceWindow operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See RegisterTargetWithMaintenanceWindow for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the RegisterTargetWithMaintenanceWindow method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the RegisterTargetWithMaintenanceWindowRequest method.
// req, resp := client.RegisterTargetWithMaintenanceWindowRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTargetWithMaintenanceWindow
func (c *SSM) RegisterTargetWithMaintenanceWindowRequest(input *RegisterTargetWithMaintenanceWindowInput) (req *request.Request, output *RegisterTargetWithMaintenanceWindowOutput) {
op := &request.Operation{
Name: opRegisterTargetWithMaintenanceWindow,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RegisterTargetWithMaintenanceWindowInput{}
}
output = &RegisterTargetWithMaintenanceWindowOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// RegisterTargetWithMaintenanceWindow API operation for Amazon Simple Systems Manager (SSM).
//
// Registers a target with a Maintenance Window.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation RegisterTargetWithMaintenanceWindow for usage and error information.
//
// Returned Error Codes:
// * ErrCodeIdempotentParameterMismatch "IdempotentParameterMismatch"
// Error returned when an idempotent operation is retried and the parameters
// dont match the original call to the API with the same idempotency token.
//
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeResourceLimitExceededException "ResourceLimitExceededException"
// Error returned when the caller has exceeded the default resource limits (e.g.
// too many Maintenance Windows have been created).
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTargetWithMaintenanceWindow
func (c *SSM) RegisterTargetWithMaintenanceWindow(input *RegisterTargetWithMaintenanceWindowInput) (*RegisterTargetWithMaintenanceWindowOutput, error) {
req, out := c.RegisterTargetWithMaintenanceWindowRequest(input)
err := req.Send()
return out, err
}
const opRegisterTaskWithMaintenanceWindow = "RegisterTaskWithMaintenanceWindow"
// RegisterTaskWithMaintenanceWindowRequest generates a "aws/request.Request" representing the
// client's request for the RegisterTaskWithMaintenanceWindow operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See RegisterTaskWithMaintenanceWindow for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the RegisterTaskWithMaintenanceWindow method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the RegisterTaskWithMaintenanceWindowRequest method.
// req, resp := client.RegisterTaskWithMaintenanceWindowRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTaskWithMaintenanceWindow
func (c *SSM) RegisterTaskWithMaintenanceWindowRequest(input *RegisterTaskWithMaintenanceWindowInput) (req *request.Request, output *RegisterTaskWithMaintenanceWindowOutput) {
op := &request.Operation{
Name: opRegisterTaskWithMaintenanceWindow,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RegisterTaskWithMaintenanceWindowInput{}
}
output = &RegisterTaskWithMaintenanceWindowOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// RegisterTaskWithMaintenanceWindow API operation for Amazon Simple Systems Manager (SSM).
//
// Adds a new task to a Maintenance Window.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation RegisterTaskWithMaintenanceWindow for usage and error information.
//
// Returned Error Codes:
// * ErrCodeIdempotentParameterMismatch "IdempotentParameterMismatch"
// Error returned when an idempotent operation is retried and the parameters
// dont match the original call to the API with the same idempotency token.
//
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeResourceLimitExceededException "ResourceLimitExceededException"
// Error returned when the caller has exceeded the default resource limits (e.g.
// too many Maintenance Windows have been created).
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTaskWithMaintenanceWindow
func (c *SSM) RegisterTaskWithMaintenanceWindow(input *RegisterTaskWithMaintenanceWindowInput) (*RegisterTaskWithMaintenanceWindowOutput, error) {
req, out := c.RegisterTaskWithMaintenanceWindowRequest(input)
err := req.Send()
return out, err
}
const opRemoveTagsFromResource = "RemoveTagsFromResource"
// RemoveTagsFromResourceRequest generates a "aws/request.Request" representing the
// client's request for the RemoveTagsFromResource operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See RemoveTagsFromResource for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the RemoveTagsFromResource method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the RemoveTagsFromResourceRequest method.
// req, resp := client.RemoveTagsFromResourceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RemoveTagsFromResource
func (c *SSM) RemoveTagsFromResourceRequest(input *RemoveTagsFromResourceInput) (req *request.Request, output *RemoveTagsFromResourceOutput) {
op := &request.Operation{
Name: opRemoveTagsFromResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RemoveTagsFromResourceInput{}
}
output = &RemoveTagsFromResourceOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// RemoveTagsFromResource API operation for Amazon Simple Systems Manager (SSM).
//
// Removes all tags from the specified resource.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation RemoveTagsFromResource for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInvalidResourceType "InvalidResourceType"
// The resource type is not valid. If you are attempting to tag an instance,
// the instance must be a registered, managed instance.
//
// * ErrCodeInvalidResourceId "InvalidResourceId"
// The resource ID is not valid. Verify that you entered the correct ID and
// try again.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RemoveTagsFromResource
func (c *SSM) RemoveTagsFromResource(input *RemoveTagsFromResourceInput) (*RemoveTagsFromResourceOutput, error) {
req, out := c.RemoveTagsFromResourceRequest(input)
err := req.Send()
return out, err
}
const opSendCommand = "SendCommand"
// SendCommandRequest generates a "aws/request.Request" representing the
// client's request for the SendCommand operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See SendCommand for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the SendCommand method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the SendCommandRequest method.
// req, resp := client.SendCommandRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/SendCommand
func (c *SSM) SendCommandRequest(input *SendCommandInput) (req *request.Request, output *SendCommandOutput) {
op := &request.Operation{
Name: opSendCommand,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &SendCommandInput{}
}
output = &SendCommandOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// SendCommand API operation for Amazon Simple Systems Manager (SSM).
//
// Executes commands on one or more remote instances.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation SendCommand for usage and error information.
//
// Returned Error Codes:
// * ErrCodeDuplicateInstanceId "DuplicateInstanceId"
// You cannot specify an instance ID in more than one association.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidDocument "InvalidDocument"
// The specified document does not exist.
//
// * ErrCodeInvalidOutputFolder "InvalidOutputFolder"
// The S3 bucket does not exist.
//
// * ErrCodeInvalidParameters "InvalidParameters"
// You must specify values for all required parameters in the SSM document.
// You can only supply values to parameters defined in the SSM document.
//
// * ErrCodeUnsupportedPlatformType "UnsupportedPlatformType"
// The document does not support the platform type of the given instance ID(s).
// For example, you sent an SSM document for a Windows instance to a Linux instance.
//
// * ErrCodeMaxDocumentSizeExceeded "MaxDocumentSizeExceeded"
// The size limit of an SSM document is 64 KB.
//
// * ErrCodeInvalidRole "InvalidRole"
// The role name can't contain invalid characters. Also verify that you specified
// an IAM role for notifications that includes the required trust policy. For
// information about configuring the IAM role for Run Command notifications,
// see Getting Amazon SNS Notifications When a Command Changes Status (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/rc-sns.html)
// in the Amazon Elastic Compute Cloud User Guide .
//
// * ErrCodeInvalidNotificationConfig "InvalidNotificationConfig"
// One or more configuration items is not valid. Verify that a valid Amazon
// Resource Name (ARN) was provided for an Amazon SNS topic.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/SendCommand
func (c *SSM) SendCommand(input *SendCommandInput) (*SendCommandOutput, error) {
req, out := c.SendCommandRequest(input)
err := req.Send()
return out, err
}
const opStartAutomationExecution = "StartAutomationExecution"
// StartAutomationExecutionRequest generates a "aws/request.Request" representing the
// client's request for the StartAutomationExecution operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See StartAutomationExecution for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the StartAutomationExecution method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the StartAutomationExecutionRequest method.
// req, resp := client.StartAutomationExecutionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAutomationExecution
func (c *SSM) StartAutomationExecutionRequest(input *StartAutomationExecutionInput) (req *request.Request, output *StartAutomationExecutionOutput) {
op := &request.Operation{
Name: opStartAutomationExecution,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &StartAutomationExecutionInput{}
}
output = &StartAutomationExecutionOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// StartAutomationExecution API operation for Amazon Simple Systems Manager (SSM).
//
// Initiates execution of an Automation document.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation StartAutomationExecution for usage and error information.
//
// Returned Error Codes:
// * ErrCodeAutomationDefinitionNotFoundException "AutomationDefinitionNotFoundException"
// An Automation document with the specified name could not be found.
//
// * ErrCodeInvalidAutomationExecutionParametersException "InvalidAutomationExecutionParametersException"
// The supplied parameters for invoking the specified Automation document are
// incorrect. For example, they may not match the set of parameters permitted
// for the specified Automation document.
//
// * ErrCodeAutomationExecutionLimitExceededException "AutomationExecutionLimitExceededException"
// The number of simultaneously running Automation executions exceeded the allowable
// limit.
//
// * ErrCodeAutomationDefinitionVersionNotFoundException "AutomationDefinitionVersionNotFoundException"
// An Automation document with the specified name and version could not be found.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAutomationExecution
func (c *SSM) StartAutomationExecution(input *StartAutomationExecutionInput) (*StartAutomationExecutionOutput, error) {
req, out := c.StartAutomationExecutionRequest(input)
err := req.Send()
return out, err
}
const opStopAutomationExecution = "StopAutomationExecution"
// StopAutomationExecutionRequest generates a "aws/request.Request" representing the
// client's request for the StopAutomationExecution operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See StopAutomationExecution for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the StopAutomationExecution method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the StopAutomationExecutionRequest method.
// req, resp := client.StopAutomationExecutionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StopAutomationExecution
func (c *SSM) StopAutomationExecutionRequest(input *StopAutomationExecutionInput) (req *request.Request, output *StopAutomationExecutionOutput) {
op := &request.Operation{
Name: opStopAutomationExecution,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &StopAutomationExecutionInput{}
}
output = &StopAutomationExecutionOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// StopAutomationExecution API operation for Amazon Simple Systems Manager (SSM).
//
// Stop an Automation that is currently executing.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation StopAutomationExecution for usage and error information.
//
// Returned Error Codes:
// * ErrCodeAutomationExecutionNotFoundException "AutomationExecutionNotFoundException"
// There is no automation execution information for the requested automation
// execution ID.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StopAutomationExecution
func (c *SSM) StopAutomationExecution(input *StopAutomationExecutionInput) (*StopAutomationExecutionOutput, error) {
req, out := c.StopAutomationExecutionRequest(input)
err := req.Send()
return out, err
}
const opUpdateAssociation = "UpdateAssociation"
// UpdateAssociationRequest generates a "aws/request.Request" representing the
// client's request for the UpdateAssociation operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See UpdateAssociation for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateAssociation method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdateAssociationRequest method.
// req, resp := client.UpdateAssociationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociation
func (c *SSM) UpdateAssociationRequest(input *UpdateAssociationInput) (req *request.Request, output *UpdateAssociationOutput) {
op := &request.Operation{
Name: opUpdateAssociation,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateAssociationInput{}
}
output = &UpdateAssociationOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// UpdateAssociation API operation for Amazon Simple Systems Manager (SSM).
//
// Updates an association. You can only update the document version, schedule,
// parameters, and Amazon S3 output of an association.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation UpdateAssociation for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// * ErrCodeInvalidSchedule "InvalidSchedule"
// The schedule is invalid. Verify your cron or rate expression and try again.
//
// * ErrCodeInvalidParameters "InvalidParameters"
// You must specify values for all required parameters in the SSM document.
// You can only supply values to parameters defined in the SSM document.
//
// * ErrCodeInvalidOutputLocation "InvalidOutputLocation"
// The output location is not valid or does not exist.
//
// * ErrCodeInvalidDocumentVersion "InvalidDocumentVersion"
// The document version is not valid or does not exist.
//
// * ErrCodeAssociationDoesNotExist "AssociationDoesNotExist"
// The specified association does not exist.
//
// * ErrCodeInvalidUpdate "InvalidUpdate"
// The update is not valid.
//
// * ErrCodeTooManyUpdates "TooManyUpdates"
// There are concurrent updates for a resource that supports one update at a
// time.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociation
func (c *SSM) UpdateAssociation(input *UpdateAssociationInput) (*UpdateAssociationOutput, error) {
req, out := c.UpdateAssociationRequest(input)
err := req.Send()
return out, err
}
const opUpdateAssociationStatus = "UpdateAssociationStatus"
// UpdateAssociationStatusRequest generates a "aws/request.Request" representing the
// client's request for the UpdateAssociationStatus operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See UpdateAssociationStatus for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateAssociationStatus method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdateAssociationStatusRequest method.
// req, resp := client.UpdateAssociationStatusRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatus
func (c *SSM) UpdateAssociationStatusRequest(input *UpdateAssociationStatusInput) (req *request.Request, output *UpdateAssociationStatusOutput) {
op := &request.Operation{
Name: opUpdateAssociationStatus,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateAssociationStatusInput{}
}
output = &UpdateAssociationStatusOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// UpdateAssociationStatus API operation for Amazon Simple Systems Manager (SSM).
//
// Updates the status of the SSM document associated with the specified instance.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation UpdateAssociationStatus for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInvalidDocument "InvalidDocument"
// The specified document does not exist.
//
// * ErrCodeAssociationDoesNotExist "AssociationDoesNotExist"
// The specified association does not exist.
//
// * ErrCodeStatusUnchanged "StatusUnchanged"
// The updated status is the same as the current status.
//
// * ErrCodeTooManyUpdates "TooManyUpdates"
// There are concurrent updates for a resource that supports one update at a
// time.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatus
func (c *SSM) UpdateAssociationStatus(input *UpdateAssociationStatusInput) (*UpdateAssociationStatusOutput, error) {
req, out := c.UpdateAssociationStatusRequest(input)
err := req.Send()
return out, err
}
const opUpdateDocument = "UpdateDocument"
// UpdateDocumentRequest generates a "aws/request.Request" representing the
// client's request for the UpdateDocument operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See UpdateDocument for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateDocument method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdateDocumentRequest method.
// req, resp := client.UpdateDocumentRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocument
func (c *SSM) UpdateDocumentRequest(input *UpdateDocumentInput) (req *request.Request, output *UpdateDocumentOutput) {
op := &request.Operation{
Name: opUpdateDocument,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateDocumentInput{}
}
output = &UpdateDocumentOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// UpdateDocument API operation for Amazon Simple Systems Manager (SSM).
//
// The document you want to update.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation UpdateDocument for usage and error information.
//
// Returned Error Codes:
// * ErrCodeMaxDocumentSizeExceeded "MaxDocumentSizeExceeded"
// The size limit of an SSM document is 64 KB.
//
// * ErrCodeDocumentVersionLimitExceeded "DocumentVersionLimitExceeded"
// The document has too many versions. Delete one or more document versions
// and try again.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// * ErrCodeDuplicateDocumentContent "DuplicateDocumentContent"
// The content of the association document matches another document. Change
// the content of the document and try again.
//
// * ErrCodeInvalidDocumentContent "InvalidDocumentContent"
// The content for the SSM document is not valid.
//
// * ErrCodeInvalidDocumentVersion "InvalidDocumentVersion"
// The document version is not valid or does not exist.
//
// * ErrCodeInvalidDocumentSchemaVersion "InvalidDocumentSchemaVersion"
// The version of the document schema is not supported.
//
// * ErrCodeInvalidDocument "InvalidDocument"
// The specified document does not exist.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocument
func (c *SSM) UpdateDocument(input *UpdateDocumentInput) (*UpdateDocumentOutput, error) {
req, out := c.UpdateDocumentRequest(input)
err := req.Send()
return out, err
}
const opUpdateDocumentDefaultVersion = "UpdateDocumentDefaultVersion"
// UpdateDocumentDefaultVersionRequest generates a "aws/request.Request" representing the
// client's request for the UpdateDocumentDefaultVersion operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See UpdateDocumentDefaultVersion for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateDocumentDefaultVersion method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdateDocumentDefaultVersionRequest method.
// req, resp := client.UpdateDocumentDefaultVersionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocumentDefaultVersion
func (c *SSM) UpdateDocumentDefaultVersionRequest(input *UpdateDocumentDefaultVersionInput) (req *request.Request, output *UpdateDocumentDefaultVersionOutput) {
op := &request.Operation{
Name: opUpdateDocumentDefaultVersion,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateDocumentDefaultVersionInput{}
}
output = &UpdateDocumentDefaultVersionOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// UpdateDocumentDefaultVersion API operation for Amazon Simple Systems Manager (SSM).
//
// Set the default version of a document.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation UpdateDocumentDefaultVersion for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// * ErrCodeInvalidDocument "InvalidDocument"
// The specified document does not exist.
//
// * ErrCodeInvalidDocumentVersion "InvalidDocumentVersion"
// The document version is not valid or does not exist.
//
// * ErrCodeInvalidDocumentSchemaVersion "InvalidDocumentSchemaVersion"
// The version of the document schema is not supported.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocumentDefaultVersion
func (c *SSM) UpdateDocumentDefaultVersion(input *UpdateDocumentDefaultVersionInput) (*UpdateDocumentDefaultVersionOutput, error) {
req, out := c.UpdateDocumentDefaultVersionRequest(input)
err := req.Send()
return out, err
}
const opUpdateMaintenanceWindow = "UpdateMaintenanceWindow"
// UpdateMaintenanceWindowRequest generates a "aws/request.Request" representing the
// client's request for the UpdateMaintenanceWindow operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See UpdateMaintenanceWindow for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateMaintenanceWindow method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdateMaintenanceWindowRequest method.
// req, resp := client.UpdateMaintenanceWindowRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateMaintenanceWindow
func (c *SSM) UpdateMaintenanceWindowRequest(input *UpdateMaintenanceWindowInput) (req *request.Request, output *UpdateMaintenanceWindowOutput) {
op := &request.Operation{
Name: opUpdateMaintenanceWindow,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateMaintenanceWindowInput{}
}
output = &UpdateMaintenanceWindowOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// UpdateMaintenanceWindow API operation for Amazon Simple Systems Manager (SSM).
//
// Updates an existing Maintenance Window. Only specified parameters are modified.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation UpdateMaintenanceWindow for usage and error information.
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateMaintenanceWindow
func (c *SSM) UpdateMaintenanceWindow(input *UpdateMaintenanceWindowInput) (*UpdateMaintenanceWindowOutput, error) {
req, out := c.UpdateMaintenanceWindowRequest(input)
err := req.Send()
return out, err
}
const opUpdateManagedInstanceRole = "UpdateManagedInstanceRole"
// UpdateManagedInstanceRoleRequest generates a "aws/request.Request" representing the
// client's request for the UpdateManagedInstanceRole operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See UpdateManagedInstanceRole for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateManagedInstanceRole method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdateManagedInstanceRoleRequest method.
// req, resp := client.UpdateManagedInstanceRoleRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateManagedInstanceRole
func (c *SSM) UpdateManagedInstanceRoleRequest(input *UpdateManagedInstanceRoleInput) (req *request.Request, output *UpdateManagedInstanceRoleOutput) {
op := &request.Operation{
Name: opUpdateManagedInstanceRole,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateManagedInstanceRoleInput{}
}
output = &UpdateManagedInstanceRoleOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// UpdateManagedInstanceRole API operation for Amazon Simple Systems Manager (SSM).
//
// Assigns or changes an Amazon Identity and Access Management (IAM) role to
// the managed instance.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation UpdateManagedInstanceRole for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInvalidInstanceId "InvalidInstanceId"
// The following problems can cause this exception:
//
// You do not have permission to access the instance.
//
// The SSM agent is not running. On managed instances and Linux instances, verify
// that the SSM agent is running. On EC2 Windows instances, verify that the
// EC2Config service is running.
//
// The SSM agent or EC2Config service is not registered to the SSM endpoint.
// Try reinstalling the SSM agent or EC2Config service.
//
// The instance is not in valid state. Valid states are: Running, Pending, Stopped,
// Stopping. Invalid states are: Shutting-down and Terminated.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateManagedInstanceRole
func (c *SSM) UpdateManagedInstanceRole(input *UpdateManagedInstanceRoleInput) (*UpdateManagedInstanceRoleOutput, error) {
req, out := c.UpdateManagedInstanceRoleRequest(input)
err := req.Send()
return out, err
}
const opUpdatePatchBaseline = "UpdatePatchBaseline"
// UpdatePatchBaselineRequest generates a "aws/request.Request" representing the
// client's request for the UpdatePatchBaseline operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See UpdatePatchBaseline for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdatePatchBaseline method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdatePatchBaselineRequest method.
// req, resp := client.UpdatePatchBaselineRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdatePatchBaseline
func (c *SSM) UpdatePatchBaselineRequest(input *UpdatePatchBaselineInput) (req *request.Request, output *UpdatePatchBaselineOutput) {
op := &request.Operation{
Name: opUpdatePatchBaseline,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdatePatchBaselineInput{}
}
output = &UpdatePatchBaselineOutput{}
2017-01-23 22:22:31 +01:00
req = c.newRequest(op, input, output)
return
}
// UpdatePatchBaseline API operation for Amazon Simple Systems Manager (SSM).
//
// Modifies an existing patch baseline. Fields not specified in the request
// are left unchanged.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Systems Manager (SSM)'s
// API operation UpdatePatchBaseline for usage and error information.
//
// Returned Error Codes:
// * ErrCodeDoesNotExistException "DoesNotExistException"
// Error returned when the ID specified for a resource (e.g. a Maintenance Window)
// doesnt exist.
//
// * ErrCodeInternalServerError "InternalServerError"
// An error occurred on the server side.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdatePatchBaseline
func (c *SSM) UpdatePatchBaseline(input *UpdatePatchBaselineInput) (*UpdatePatchBaselineOutput, error) {
req, out := c.UpdatePatchBaselineRequest(input)
err := req.Send()
return out, err
}
// An activation registers one or more on-premises servers or virtual machines
// (VMs) with AWS so that you can configure those servers or VMs using Run Command.
// A server or VM that has been registered with AWS is called a managed instance.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Activation
type Activation struct {
_ struct{} `type:"structure"`
// The ID created by Systems Manager when you submitted the activation.
ActivationId *string `type:"string"`
// The date the activation was created.
CreatedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// A name for the managed instance when it is created.
DefaultInstanceName *string `type:"string"`
// A user defined description of the activation.
Description *string `type:"string"`
// The date when this activation can no longer be used to register managed instances.
ExpirationDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// Whether or not the activation is expired.
Expired *bool `type:"boolean"`
// The Amazon Identity and Access Management (IAM) role to assign to the managed
// instance.
IamRole *string `type:"string"`
// The maximum number of managed instances that can be registered using this
// activation.
RegistrationLimit *int64 `min:"1" type:"integer"`
// The number of managed instances already registered with this activation.
RegistrationsCount *int64 `min:"1" type:"integer"`
}
// String returns the string representation
func (s Activation) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Activation) GoString() string {
return s.String()
}
// SetActivationId sets the ActivationId field's value.
func (s *Activation) SetActivationId(v string) *Activation {
s.ActivationId = &v
return s
}
// SetCreatedDate sets the CreatedDate field's value.
func (s *Activation) SetCreatedDate(v time.Time) *Activation {
s.CreatedDate = &v
return s
}
// SetDefaultInstanceName sets the DefaultInstanceName field's value.
func (s *Activation) SetDefaultInstanceName(v string) *Activation {
s.DefaultInstanceName = &v
return s
}
// SetDescription sets the Description field's value.
func (s *Activation) SetDescription(v string) *Activation {
s.Description = &v
return s
}
// SetExpirationDate sets the ExpirationDate field's value.
func (s *Activation) SetExpirationDate(v time.Time) *Activation {
s.ExpirationDate = &v
return s
}
// SetExpired sets the Expired field's value.
func (s *Activation) SetExpired(v bool) *Activation {
s.Expired = &v
return s
}
// SetIamRole sets the IamRole field's value.
func (s *Activation) SetIamRole(v string) *Activation {
s.IamRole = &v
return s
}
// SetRegistrationLimit sets the RegistrationLimit field's value.
func (s *Activation) SetRegistrationLimit(v int64) *Activation {
s.RegistrationLimit = &v
return s
}
// SetRegistrationsCount sets the RegistrationsCount field's value.
func (s *Activation) SetRegistrationsCount(v int64) *Activation {
s.RegistrationsCount = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AddTagsToResourceRequest
type AddTagsToResourceInput struct {
_ struct{} `type:"structure"`
// The resource ID you want to tag.
//
// ResourceId is a required field
ResourceId *string `type:"string" required:"true"`
// Specifies the type of resource you are tagging.
//
// ResourceType is a required field
ResourceType *string `type:"string" required:"true" enum:"ResourceTypeForTagging"`
// One or more tags. The value parameter is required, but if you don't want
// the tag to have a value, specify the parameter with no value, and we set
// the value to an empty string.
//
// Tags is a required field
Tags []*Tag `type:"list" required:"true"`
}
// String returns the string representation
func (s AddTagsToResourceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AddTagsToResourceInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *AddTagsToResourceInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "AddTagsToResourceInput"}
if s.ResourceId == nil {
invalidParams.Add(request.NewErrParamRequired("ResourceId"))
}
if s.ResourceType == nil {
invalidParams.Add(request.NewErrParamRequired("ResourceType"))
}
if s.Tags == nil {
invalidParams.Add(request.NewErrParamRequired("Tags"))
}
if s.Tags != nil {
for i, v := range s.Tags {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Tags", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetResourceId sets the ResourceId field's value.
func (s *AddTagsToResourceInput) SetResourceId(v string) *AddTagsToResourceInput {
s.ResourceId = &v
return s
}
// SetResourceType sets the ResourceType field's value.
func (s *AddTagsToResourceInput) SetResourceType(v string) *AddTagsToResourceInput {
s.ResourceType = &v
return s
}
// SetTags sets the Tags field's value.
func (s *AddTagsToResourceInput) SetTags(v []*Tag) *AddTagsToResourceInput {
s.Tags = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AddTagsToResourceResult
type AddTagsToResourceOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s AddTagsToResourceOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AddTagsToResourceOutput) GoString() string {
return s.String()
}
// Describes an association of an SSM document and an instance.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Association
type Association struct {
_ struct{} `type:"structure"`
// The ID created by the system when you create an association. An association
// is a binding between a document and a set of targets with a schedule.
AssociationId *string `type:"string"`
// The version of the document used in the association.
DocumentVersion *string `type:"string"`
// The ID of the instance.
InstanceId *string `type:"string"`
// The date on which the association was last run.
LastExecutionDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The name of the SSM document.
Name *string `type:"string"`
// Information about the association.
Overview *AssociationOverview `type:"structure"`
// A cron expression that specifies a schedule when the association runs.
ScheduleExpression *string `min:"1" type:"string"`
// The instances targeted by the request to create an association.
Targets []*Target `type:"list"`
}
// String returns the string representation
func (s Association) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Association) GoString() string {
return s.String()
}
// SetAssociationId sets the AssociationId field's value.
func (s *Association) SetAssociationId(v string) *Association {
s.AssociationId = &v
return s
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *Association) SetDocumentVersion(v string) *Association {
s.DocumentVersion = &v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *Association) SetInstanceId(v string) *Association {
s.InstanceId = &v
return s
}
// SetLastExecutionDate sets the LastExecutionDate field's value.
func (s *Association) SetLastExecutionDate(v time.Time) *Association {
s.LastExecutionDate = &v
return s
}
// SetName sets the Name field's value.
func (s *Association) SetName(v string) *Association {
s.Name = &v
return s
}
// SetOverview sets the Overview field's value.
func (s *Association) SetOverview(v *AssociationOverview) *Association {
s.Overview = v
return s
}
// SetScheduleExpression sets the ScheduleExpression field's value.
func (s *Association) SetScheduleExpression(v string) *Association {
s.ScheduleExpression = &v
return s
}
// SetTargets sets the Targets field's value.
func (s *Association) SetTargets(v []*Target) *Association {
s.Targets = v
return s
}
// Describes the parameters for a document.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationDescription
type AssociationDescription struct {
_ struct{} `type:"structure"`
// The association ID.
AssociationId *string `type:"string"`
// The date when the association was made.
Date *time.Time `type:"timestamp" timestampFormat:"unix"`
// The document version.
DocumentVersion *string `type:"string"`
// The ID of the instance.
InstanceId *string `type:"string"`
// The date on which the association was last run.
LastExecutionDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The last date on which the association was successfully run.
LastSuccessfulExecutionDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The date when the association was last updated.
LastUpdateAssociationDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The name of the SSM document.
Name *string `type:"string"`
// An Amazon S3 bucket where you want to store the output details of the request.
OutputLocation *InstanceAssociationOutputLocation `type:"structure"`
// Information about the association.
Overview *AssociationOverview `type:"structure"`
// A description of the parameters for a document.
Parameters map[string][]*string `type:"map"`
// A cron expression that specifies a schedule when the association runs.
ScheduleExpression *string `min:"1" type:"string"`
// The association status.
Status *AssociationStatus `type:"structure"`
// The instances targeted by the request.
Targets []*Target `type:"list"`
}
// String returns the string representation
func (s AssociationDescription) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AssociationDescription) GoString() string {
return s.String()
}
// SetAssociationId sets the AssociationId field's value.
func (s *AssociationDescription) SetAssociationId(v string) *AssociationDescription {
s.AssociationId = &v
return s
}
// SetDate sets the Date field's value.
func (s *AssociationDescription) SetDate(v time.Time) *AssociationDescription {
s.Date = &v
return s
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *AssociationDescription) SetDocumentVersion(v string) *AssociationDescription {
s.DocumentVersion = &v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *AssociationDescription) SetInstanceId(v string) *AssociationDescription {
s.InstanceId = &v
return s
}
// SetLastExecutionDate sets the LastExecutionDate field's value.
func (s *AssociationDescription) SetLastExecutionDate(v time.Time) *AssociationDescription {
s.LastExecutionDate = &v
return s
}
// SetLastSuccessfulExecutionDate sets the LastSuccessfulExecutionDate field's value.
func (s *AssociationDescription) SetLastSuccessfulExecutionDate(v time.Time) *AssociationDescription {
s.LastSuccessfulExecutionDate = &v
return s
}
// SetLastUpdateAssociationDate sets the LastUpdateAssociationDate field's value.
func (s *AssociationDescription) SetLastUpdateAssociationDate(v time.Time) *AssociationDescription {
s.LastUpdateAssociationDate = &v
return s
}
// SetName sets the Name field's value.
func (s *AssociationDescription) SetName(v string) *AssociationDescription {
s.Name = &v
return s
}
// SetOutputLocation sets the OutputLocation field's value.
func (s *AssociationDescription) SetOutputLocation(v *InstanceAssociationOutputLocation) *AssociationDescription {
s.OutputLocation = v
return s
}
// SetOverview sets the Overview field's value.
func (s *AssociationDescription) SetOverview(v *AssociationOverview) *AssociationDescription {
s.Overview = v
return s
}
// SetParameters sets the Parameters field's value.
func (s *AssociationDescription) SetParameters(v map[string][]*string) *AssociationDescription {
s.Parameters = v
return s
}
// SetScheduleExpression sets the ScheduleExpression field's value.
func (s *AssociationDescription) SetScheduleExpression(v string) *AssociationDescription {
s.ScheduleExpression = &v
return s
}
// SetStatus sets the Status field's value.
func (s *AssociationDescription) SetStatus(v *AssociationStatus) *AssociationDescription {
s.Status = v
return s
}
// SetTargets sets the Targets field's value.
func (s *AssociationDescription) SetTargets(v []*Target) *AssociationDescription {
s.Targets = v
return s
}
// Describes a filter.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationFilter
type AssociationFilter struct {
_ struct{} `type:"structure"`
// The name of the filter.
//
// Key is a required field
Key *string `locationName:"key" type:"string" required:"true" enum:"AssociationFilterKey"`
// The filter value.
//
// Value is a required field
Value *string `locationName:"value" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s AssociationFilter) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AssociationFilter) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *AssociationFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "AssociationFilter"}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
}
if s.Value == nil {
invalidParams.Add(request.NewErrParamRequired("Value"))
}
if s.Value != nil && len(*s.Value) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Value", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetKey sets the Key field's value.
func (s *AssociationFilter) SetKey(v string) *AssociationFilter {
s.Key = &v
return s
}
// SetValue sets the Value field's value.
func (s *AssociationFilter) SetValue(v string) *AssociationFilter {
s.Value = &v
return s
}
// Information about the association.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationOverview
type AssociationOverview struct {
_ struct{} `type:"structure"`
// Returns the number of targets for the association status. For example, if
// you created an association with two instances, and one of them was successful,
// this would return the count of instances by status.
AssociationStatusAggregatedCount map[string]*int64 `type:"map"`
// A detailed status of the association.
DetailedStatus *string `type:"string"`
// The status of the association. Status can be: Pending, Success, or Failed.
Status *string `type:"string"`
}
// String returns the string representation
func (s AssociationOverview) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AssociationOverview) GoString() string {
return s.String()
}
// SetAssociationStatusAggregatedCount sets the AssociationStatusAggregatedCount field's value.
func (s *AssociationOverview) SetAssociationStatusAggregatedCount(v map[string]*int64) *AssociationOverview {
s.AssociationStatusAggregatedCount = v
return s
}
// SetDetailedStatus sets the DetailedStatus field's value.
func (s *AssociationOverview) SetDetailedStatus(v string) *AssociationOverview {
s.DetailedStatus = &v
return s
}
// SetStatus sets the Status field's value.
func (s *AssociationOverview) SetStatus(v string) *AssociationOverview {
s.Status = &v
return s
}
// Describes an association status.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationStatus
type AssociationStatus struct {
_ struct{} `type:"structure"`
// A user-defined string.
AdditionalInfo *string `type:"string"`
// The date when the status changed.
//
// Date is a required field
Date *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
// The reason for the status.
//
// Message is a required field
Message *string `min:"1" type:"string" required:"true"`
// The status.
//
// Name is a required field
Name *string `type:"string" required:"true" enum:"AssociationStatusName"`
}
// String returns the string representation
func (s AssociationStatus) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AssociationStatus) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *AssociationStatus) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "AssociationStatus"}
if s.Date == nil {
invalidParams.Add(request.NewErrParamRequired("Date"))
}
if s.Message == nil {
invalidParams.Add(request.NewErrParamRequired("Message"))
}
if s.Message != nil && len(*s.Message) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Message", 1))
}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetAdditionalInfo sets the AdditionalInfo field's value.
func (s *AssociationStatus) SetAdditionalInfo(v string) *AssociationStatus {
s.AdditionalInfo = &v
return s
}
// SetDate sets the Date field's value.
func (s *AssociationStatus) SetDate(v time.Time) *AssociationStatus {
s.Date = &v
return s
}
// SetMessage sets the Message field's value.
func (s *AssociationStatus) SetMessage(v string) *AssociationStatus {
s.Message = &v
return s
}
// SetName sets the Name field's value.
func (s *AssociationStatus) SetName(v string) *AssociationStatus {
s.Name = &v
return s
}
// Detailed information about the current state of an individual Automation
// execution.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecution
type AutomationExecution struct {
_ struct{} `type:"structure"`
// The execution ID.
AutomationExecutionId *string `min:"36" type:"string"`
// The execution status of the Automation.
AutomationExecutionStatus *string `type:"string" enum:"AutomationExecutionStatus"`
// The name of the Automation document used during the execution.
DocumentName *string `type:"string"`
// The version of the document to use during execution.
DocumentVersion *string `type:"string"`
// The time the execution finished.
ExecutionEndTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The time the execution started.
ExecutionStartTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// A message describing why an execution has failed, if the status is set to
// Failed.
FailureMessage *string `type:"string"`
// The list of execution outputs as defined in the automation document.
Outputs map[string][]*string `min:"1" type:"map"`
// The key-value map of execution parameters, which were supplied when calling
// StartAutomationExecution.
Parameters map[string][]*string `min:"1" type:"map"`
// A list of details about the current state of all steps that comprise an execution.
// An Automation document contains a list of steps that are executed in order.
StepExecutions []*StepExecution `type:"list"`
}
// String returns the string representation
func (s AutomationExecution) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AutomationExecution) GoString() string {
return s.String()
}
// SetAutomationExecutionId sets the AutomationExecutionId field's value.
func (s *AutomationExecution) SetAutomationExecutionId(v string) *AutomationExecution {
s.AutomationExecutionId = &v
return s
}
// SetAutomationExecutionStatus sets the AutomationExecutionStatus field's value.
func (s *AutomationExecution) SetAutomationExecutionStatus(v string) *AutomationExecution {
s.AutomationExecutionStatus = &v
return s
}
// SetDocumentName sets the DocumentName field's value.
func (s *AutomationExecution) SetDocumentName(v string) *AutomationExecution {
s.DocumentName = &v
return s
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *AutomationExecution) SetDocumentVersion(v string) *AutomationExecution {
s.DocumentVersion = &v
return s
}
// SetExecutionEndTime sets the ExecutionEndTime field's value.
func (s *AutomationExecution) SetExecutionEndTime(v time.Time) *AutomationExecution {
s.ExecutionEndTime = &v
return s
}
// SetExecutionStartTime sets the ExecutionStartTime field's value.
func (s *AutomationExecution) SetExecutionStartTime(v time.Time) *AutomationExecution {
s.ExecutionStartTime = &v
return s
}
// SetFailureMessage sets the FailureMessage field's value.
func (s *AutomationExecution) SetFailureMessage(v string) *AutomationExecution {
s.FailureMessage = &v
return s
}
// SetOutputs sets the Outputs field's value.
func (s *AutomationExecution) SetOutputs(v map[string][]*string) *AutomationExecution {
s.Outputs = v
return s
}
// SetParameters sets the Parameters field's value.
func (s *AutomationExecution) SetParameters(v map[string][]*string) *AutomationExecution {
s.Parameters = v
return s
}
// SetStepExecutions sets the StepExecutions field's value.
func (s *AutomationExecution) SetStepExecutions(v []*StepExecution) *AutomationExecution {
s.StepExecutions = v
return s
}
// A filter used to match specific automation executions. This is used to limit
// the scope of Automation execution information returned.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecutionFilter
type AutomationExecutionFilter struct {
_ struct{} `type:"structure"`
// The aspect of the Automation execution information that should be limited.
//
// Key is a required field
Key *string `type:"string" required:"true" enum:"AutomationExecutionFilterKey"`
// The values used to limit the execution information associated with the filter's
// key.
//
// Values is a required field
Values []*string `min:"1" type:"list" required:"true"`
}
// String returns the string representation
func (s AutomationExecutionFilter) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AutomationExecutionFilter) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *AutomationExecutionFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "AutomationExecutionFilter"}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
}
if s.Values == nil {
invalidParams.Add(request.NewErrParamRequired("Values"))
}
if s.Values != nil && len(s.Values) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Values", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetKey sets the Key field's value.
func (s *AutomationExecutionFilter) SetKey(v string) *AutomationExecutionFilter {
s.Key = &v
return s
}
// SetValues sets the Values field's value.
func (s *AutomationExecutionFilter) SetValues(v []*string) *AutomationExecutionFilter {
s.Values = v
return s
}
// Details about a specific Automation execution.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecutionMetadata
type AutomationExecutionMetadata struct {
_ struct{} `type:"structure"`
// The execution ID.
AutomationExecutionId *string `min:"36" type:"string"`
// The status of the execution. Valid values include: Running, Succeeded, Failed,
// Timed out, or Cancelled.
AutomationExecutionStatus *string `type:"string" enum:"AutomationExecutionStatus"`
// The name of the Automation document used during execution.
DocumentName *string `type:"string"`
// The document version used during the execution.
DocumentVersion *string `type:"string"`
// The IAM role ARN of the user who executed the Automation.
ExecutedBy *string `type:"string"`
// The time the execution finished. This is not populated if the execution is
// still in progress.
ExecutionEndTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The time the execution started.>
ExecutionStartTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// An Amazon S3 bucket where execution information is stored.
LogFile *string `type:"string"`
// The list of execution outputs as defined in the Automation document.
Outputs map[string][]*string `min:"1" type:"map"`
}
// String returns the string representation
func (s AutomationExecutionMetadata) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AutomationExecutionMetadata) GoString() string {
return s.String()
}
// SetAutomationExecutionId sets the AutomationExecutionId field's value.
func (s *AutomationExecutionMetadata) SetAutomationExecutionId(v string) *AutomationExecutionMetadata {
s.AutomationExecutionId = &v
return s
}
// SetAutomationExecutionStatus sets the AutomationExecutionStatus field's value.
func (s *AutomationExecutionMetadata) SetAutomationExecutionStatus(v string) *AutomationExecutionMetadata {
s.AutomationExecutionStatus = &v
return s
}
// SetDocumentName sets the DocumentName field's value.
func (s *AutomationExecutionMetadata) SetDocumentName(v string) *AutomationExecutionMetadata {
s.DocumentName = &v
return s
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *AutomationExecutionMetadata) SetDocumentVersion(v string) *AutomationExecutionMetadata {
s.DocumentVersion = &v
return s
}
// SetExecutedBy sets the ExecutedBy field's value.
func (s *AutomationExecutionMetadata) SetExecutedBy(v string) *AutomationExecutionMetadata {
s.ExecutedBy = &v
return s
}
// SetExecutionEndTime sets the ExecutionEndTime field's value.
func (s *AutomationExecutionMetadata) SetExecutionEndTime(v time.Time) *AutomationExecutionMetadata {
s.ExecutionEndTime = &v
return s
}
// SetExecutionStartTime sets the ExecutionStartTime field's value.
func (s *AutomationExecutionMetadata) SetExecutionStartTime(v time.Time) *AutomationExecutionMetadata {
s.ExecutionStartTime = &v
return s
}
// SetLogFile sets the LogFile field's value.
func (s *AutomationExecutionMetadata) SetLogFile(v string) *AutomationExecutionMetadata {
s.LogFile = &v
return s
}
// SetOutputs sets the Outputs field's value.
func (s *AutomationExecutionMetadata) SetOutputs(v map[string][]*string) *AutomationExecutionMetadata {
s.Outputs = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CancelCommandRequest
type CancelCommandInput struct {
_ struct{} `type:"structure"`
// The ID of the command you want to cancel.
//
// CommandId is a required field
CommandId *string `min:"36" type:"string" required:"true"`
// (Optional) A list of instance IDs on which you want to cancel the command.
// If not provided, the command is canceled on every instance on which it was
// requested.
InstanceIds []*string `type:"list"`
}
// String returns the string representation
func (s CancelCommandInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CancelCommandInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CancelCommandInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CancelCommandInput"}
if s.CommandId == nil {
invalidParams.Add(request.NewErrParamRequired("CommandId"))
}
if s.CommandId != nil && len(*s.CommandId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("CommandId", 36))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetCommandId sets the CommandId field's value.
func (s *CancelCommandInput) SetCommandId(v string) *CancelCommandInput {
s.CommandId = &v
return s
}
// SetInstanceIds sets the InstanceIds field's value.
func (s *CancelCommandInput) SetInstanceIds(v []*string) *CancelCommandInput {
s.InstanceIds = v
return s
}
// Whether or not the command was successfully canceled. There is no guarantee
// that a request can be canceled.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CancelCommandResult
type CancelCommandOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s CancelCommandOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CancelCommandOutput) GoString() string {
return s.String()
}
// Describes a command request.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Command
type Command struct {
_ struct{} `type:"structure"`
// A unique identifier for this command.
CommandId *string `min:"36" type:"string"`
// User-specified information about the command, such as a brief description
// of what the command should do.
Comment *string `type:"string"`
// The number of targets for which the command invocation reached a terminal
// state. Terminal states include the following: Success, Failed, Execution
// Timed Out, Delivery Timed Out, Canceled, Terminated, or Undeliverable.
CompletedCount *int64 `type:"integer"`
// The name of the SSM document requested for execution.
DocumentName *string `type:"string"`
// The number of targets for which the status is Failed or Execution Timed Out.
ErrorCount *int64 `type:"integer"`
// If this time is reached and the command has not already started executing,
// it will not execute. Calculated based on the ExpiresAfter user input provided
// as part of the SendCommand API.
ExpiresAfter *time.Time `type:"timestamp" timestampFormat:"unix"`
// The instance IDs against which this command was requested.
InstanceIds []*string `type:"list"`
// The maximum number of instances that are allowed to execute the command at
// the same time. You can specify a number of instances, such as 10, or a percentage
// of instances, such as 10%. The default value is 50. For more information
// about how to use MaxConcurrency, see Executing a Command Using Amazon EC2
// Run Command (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/run-command.html)
// (Linux) or Executing a Command Using Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/run-command.html)
// (Windows).
MaxConcurrency *string `min:"1" type:"string"`
// The maximum number of errors allowed before the system stops sending the
// command to additional targets. You can specify a number of errors, such as
// 10, or a percentage or errors, such as 10%. The default value is 50. For
// more information about how to use MaxErrors, see Executing a Command Using
// Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/run-command.html)
// (Linux) or Executing a Command Using Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/run-command.html)
// (Windows).
MaxErrors *string `min:"1" type:"string"`
// Configurations for sending notifications about command status changes.
NotificationConfig *NotificationConfig `type:"structure"`
// The S3 bucket where the responses to the command executions should be stored.
// This was requested when issuing the command.
OutputS3BucketName *string `min:"3" type:"string"`
// The S3 directory path inside the bucket where the responses to the command
// executions should be stored. This was requested when issuing the command.
OutputS3KeyPrefix *string `type:"string"`
// The region where the Amazon Simple Storage Service (Amazon S3) output bucket
// is located. The default value is the region where Run Command is being called.
OutputS3Region *string `min:"3" type:"string"`
// The parameter values to be inserted in the SSM document when executing the
// command.
Parameters map[string][]*string `type:"map"`
// The date and time the command was requested.
RequestedDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The IAM service role that Run Command uses to act on your behalf when sending
// notifications about command status changes.
ServiceRole *string `type:"string"`
// The status of the command.
Status *string `type:"string" enum:"CommandStatus"`
// A detailed status of the command execution. StatusDetails includes more information
// than Status because it includes states resulting from error and concurrency
// control parameters. StatusDetails can show different results than Status.
// For more information about these statuses, see Monitor Commands (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitor-commands.html)
// (Linux) or Monitor Commands (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/monitor-commands.html)
// (Windows). StatusDetails can be one of the following values:
//
// * Pending The command has not been sent to any instances.
//
// * In Progress The command has been sent to at least one instance but
// has not reached a final state on all instances.
//
// * Success The command successfully executed on all invocations. This
// is a terminal state.
//
// * Delivery Timed Out The value of MaxErrors or more command invocations
// shows a status of Delivery Timed Out. This is a terminal state.
//
// * Execution Timed Out The value of MaxErrors or more command invocations
// shows a status of Execution Timed Out. This is a terminal state.
//
// * Failed The value of MaxErrors or more command invocations shows a
// status of Failed. This is a terminal state.
//
// * Incomplete The command was attempted on all instances and one or more
// invocations does not have a value of Success but not enough invocations
// failed for the status to be Failed. This is a terminal state.
//
// * Canceled The command was terminated before it was completed. This
// is a terminal state.
//
// * Rate Exceeded The number of instances targeted by the command exceeded
// the account limit for pending invocations. The system has canceled the
// command before executing it on any instance. This is a terminal state.
StatusDetails *string `type:"string"`
// The number of targets for the command.
TargetCount *int64 `type:"integer"`
// An array of search criteria that targets instances using a Key;Value combination
// that you specify. Targets is required if you don't provide one or more instance
// IDs in the call.
Targets []*Target `type:"list"`
}
// String returns the string representation
func (s Command) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Command) GoString() string {
return s.String()
}
// SetCommandId sets the CommandId field's value.
func (s *Command) SetCommandId(v string) *Command {
s.CommandId = &v
return s
}
// SetComment sets the Comment field's value.
func (s *Command) SetComment(v string) *Command {
s.Comment = &v
return s
}
// SetCompletedCount sets the CompletedCount field's value.
func (s *Command) SetCompletedCount(v int64) *Command {
s.CompletedCount = &v
return s
}
// SetDocumentName sets the DocumentName field's value.
func (s *Command) SetDocumentName(v string) *Command {
s.DocumentName = &v
return s
}
// SetErrorCount sets the ErrorCount field's value.
func (s *Command) SetErrorCount(v int64) *Command {
s.ErrorCount = &v
return s
}
// SetExpiresAfter sets the ExpiresAfter field's value.
func (s *Command) SetExpiresAfter(v time.Time) *Command {
s.ExpiresAfter = &v
return s
}
// SetInstanceIds sets the InstanceIds field's value.
func (s *Command) SetInstanceIds(v []*string) *Command {
s.InstanceIds = v
return s
}
// SetMaxConcurrency sets the MaxConcurrency field's value.
func (s *Command) SetMaxConcurrency(v string) *Command {
s.MaxConcurrency = &v
return s
}
// SetMaxErrors sets the MaxErrors field's value.
func (s *Command) SetMaxErrors(v string) *Command {
s.MaxErrors = &v
return s
}
// SetNotificationConfig sets the NotificationConfig field's value.
func (s *Command) SetNotificationConfig(v *NotificationConfig) *Command {
s.NotificationConfig = v
return s
}
// SetOutputS3BucketName sets the OutputS3BucketName field's value.
func (s *Command) SetOutputS3BucketName(v string) *Command {
s.OutputS3BucketName = &v
return s
}
// SetOutputS3KeyPrefix sets the OutputS3KeyPrefix field's value.
func (s *Command) SetOutputS3KeyPrefix(v string) *Command {
s.OutputS3KeyPrefix = &v
return s
}
// SetOutputS3Region sets the OutputS3Region field's value.
func (s *Command) SetOutputS3Region(v string) *Command {
s.OutputS3Region = &v
return s
}
// SetParameters sets the Parameters field's value.
func (s *Command) SetParameters(v map[string][]*string) *Command {
s.Parameters = v
return s
}
// SetRequestedDateTime sets the RequestedDateTime field's value.
func (s *Command) SetRequestedDateTime(v time.Time) *Command {
s.RequestedDateTime = &v
return s
}
// SetServiceRole sets the ServiceRole field's value.
func (s *Command) SetServiceRole(v string) *Command {
s.ServiceRole = &v
return s
}
// SetStatus sets the Status field's value.
func (s *Command) SetStatus(v string) *Command {
s.Status = &v
return s
}
// SetStatusDetails sets the StatusDetails field's value.
func (s *Command) SetStatusDetails(v string) *Command {
s.StatusDetails = &v
return s
}
// SetTargetCount sets the TargetCount field's value.
func (s *Command) SetTargetCount(v int64) *Command {
s.TargetCount = &v
return s
}
// SetTargets sets the Targets field's value.
func (s *Command) SetTargets(v []*Target) *Command {
s.Targets = v
return s
}
// Describes a command filter.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CommandFilter
type CommandFilter struct {
_ struct{} `type:"structure"`
// The name of the filter. For example, requested date and time.
//
// Key is a required field
Key *string `locationName:"key" type:"string" required:"true" enum:"CommandFilterKey"`
// The filter value. For example: June 30, 2015.
//
// Value is a required field
Value *string `locationName:"value" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CommandFilter) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CommandFilter) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CommandFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CommandFilter"}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
}
if s.Value == nil {
invalidParams.Add(request.NewErrParamRequired("Value"))
}
if s.Value != nil && len(*s.Value) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Value", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetKey sets the Key field's value.
func (s *CommandFilter) SetKey(v string) *CommandFilter {
s.Key = &v
return s
}
// SetValue sets the Value field's value.
func (s *CommandFilter) SetValue(v string) *CommandFilter {
s.Value = &v
return s
}
// An invocation is copy of a command sent to a specific instance. A command
// can apply to one or more instances. A command invocation applies to one instance.
// For example, if a user executes SendCommand against three instances, then
// a command invocation is created for each requested instance ID. A command
// invocation returns status and detail information about a command you executed.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CommandInvocation
type CommandInvocation struct {
_ struct{} `type:"structure"`
// The command against which this invocation was requested.
CommandId *string `min:"36" type:"string"`
CommandPlugins []*CommandPlugin `type:"list"`
// User-specified information about the command, such as a brief description
// of what the command should do.
Comment *string `type:"string"`
// The document name that was requested for execution.
DocumentName *string `type:"string"`
// The instance ID in which this invocation was requested.
InstanceId *string `type:"string"`
// The name of the invocation target. For Amazon EC2 instances this is the value
// for the aws:Name tag. For on-premises instances, this is the name of the
// instance.
InstanceName *string `type:"string"`
// Configurations for sending notifications about command status changes on
// a per instance basis.
NotificationConfig *NotificationConfig `type:"structure"`
// The time and date the request was sent to this instance.
RequestedDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The IAM service role that Run Command uses to act on your behalf when sending
// notifications about command status changes on a per instance basis.
ServiceRole *string `type:"string"`
// The URL to the plugins StdErr file in Amazon S3, if the Amazon S3 bucket
// was defined for the parent command. For an invocation, StandardErrorUrl is
// populated if there is just one plugin defined for the command, and the Amazon
// S3 bucket was defined for the command.
StandardErrorUrl *string `type:"string"`
// The URL to the plugins StdOut file in Amazon S3, if the Amazon S3 bucket
// was defined for the parent command. For an invocation, StandardOutputUrl
// is populated if there is just one plugin defined for the command, and the
// Amazon S3 bucket was defined for the command.
StandardOutputUrl *string `type:"string"`
// Whether or not the invocation succeeded, failed, or is pending.
Status *string `type:"string" enum:"CommandInvocationStatus"`
// A detailed status of the command execution for each invocation (each instance
// targeted by the command). StatusDetails includes more information than Status
// because it includes states resulting from error and concurrency control parameters.
// StatusDetails can show different results than Status. For more information
// about these statuses, see Monitor Commands (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitor-commands.html)
// (Linux) or Monitor Commands (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/monitor-commands.html)
// (Windows). StatusDetails can be one of the following values:
//
// * Pending The command has not been sent to the instance.
//
// * In Progress The command has been sent to the instance but has not
// reached a terminal state.
//
// * Success The execution of the command or plugin was successfully completed.
// This is a terminal state.
//
// * Delivery Timed Out The command was not delivered to the instance before
// the delivery timeout expired. Delivery timeouts do not count against the
// parent commands MaxErrors limit, but they do contribute to whether the
// parent command status is Success or Incomplete. This is a terminal state.
//
// * Execution Timed Out Command execution started on the instance, but
// the execution was not complete before the execution timeout expired. Execution
// timeouts count against the MaxErrors limit of the parent command. This
// is a terminal state.
//
// * Failed The command was not successful on the instance. For a plugin,
// this indicates that the result code was not zero. For a command invocation,
// this indicates that the result code for one or more plugins was not zero.
// Invocation failures count against the MaxErrors limit of the parent command.
// This is a terminal state.
//
// * Canceled The command was terminated before it was completed. This
// is a terminal state.
//
// * Undeliverable The command can't be delivered to the instance. The
// instance might not exist or might not be responding. Undeliverable invocations
// don't count against the parent commands MaxErrors limit and don't contribute
// to whether the parent command status is Success or Incomplete. This is
// a terminal state.
//
// * Terminated The parent command exceeded its MaxErrors limit and subsequent
// command invocations were canceled by the system. This is a terminal state.
StatusDetails *string `type:"string"`
// Gets the trace output sent by the agent.
TraceOutput *string `type:"string"`
}
// String returns the string representation
func (s CommandInvocation) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CommandInvocation) GoString() string {
return s.String()
}
// SetCommandId sets the CommandId field's value.
func (s *CommandInvocation) SetCommandId(v string) *CommandInvocation {
s.CommandId = &v
return s
}
// SetCommandPlugins sets the CommandPlugins field's value.
func (s *CommandInvocation) SetCommandPlugins(v []*CommandPlugin) *CommandInvocation {
s.CommandPlugins = v
return s
}
// SetComment sets the Comment field's value.
func (s *CommandInvocation) SetComment(v string) *CommandInvocation {
s.Comment = &v
return s
}
// SetDocumentName sets the DocumentName field's value.
func (s *CommandInvocation) SetDocumentName(v string) *CommandInvocation {
s.DocumentName = &v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *CommandInvocation) SetInstanceId(v string) *CommandInvocation {
s.InstanceId = &v
return s
}
// SetInstanceName sets the InstanceName field's value.
func (s *CommandInvocation) SetInstanceName(v string) *CommandInvocation {
s.InstanceName = &v
return s
}
// SetNotificationConfig sets the NotificationConfig field's value.
func (s *CommandInvocation) SetNotificationConfig(v *NotificationConfig) *CommandInvocation {
s.NotificationConfig = v
return s
}
// SetRequestedDateTime sets the RequestedDateTime field's value.
func (s *CommandInvocation) SetRequestedDateTime(v time.Time) *CommandInvocation {
s.RequestedDateTime = &v
return s
}
// SetServiceRole sets the ServiceRole field's value.
func (s *CommandInvocation) SetServiceRole(v string) *CommandInvocation {
s.ServiceRole = &v
return s
}
// SetStandardErrorUrl sets the StandardErrorUrl field's value.
func (s *CommandInvocation) SetStandardErrorUrl(v string) *CommandInvocation {
s.StandardErrorUrl = &v
return s
}
// SetStandardOutputUrl sets the StandardOutputUrl field's value.
func (s *CommandInvocation) SetStandardOutputUrl(v string) *CommandInvocation {
s.StandardOutputUrl = &v
return s
}
// SetStatus sets the Status field's value.
func (s *CommandInvocation) SetStatus(v string) *CommandInvocation {
s.Status = &v
return s
}
// SetStatusDetails sets the StatusDetails field's value.
func (s *CommandInvocation) SetStatusDetails(v string) *CommandInvocation {
s.StatusDetails = &v
return s
}
// SetTraceOutput sets the TraceOutput field's value.
func (s *CommandInvocation) SetTraceOutput(v string) *CommandInvocation {
s.TraceOutput = &v
return s
}
// Describes plugin details.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CommandPlugin
type CommandPlugin struct {
_ struct{} `type:"structure"`
// The name of the plugin. Must be one of the following: aws:updateAgent, aws:domainjoin,
// aws:applications, aws:runPowerShellScript, aws:psmodule, aws:cloudWatch,
// aws:runShellScript, or aws:updateSSMAgent.
Name *string `min:"4" type:"string"`
// Output of the plugin execution.
Output *string `type:"string"`
// The S3 bucket where the responses to the command executions should be stored.
// This was requested when issuing the command. For example, in the following
// response:
//
// test_folder/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-1234567876543/awsrunShellScript
//
// test_folder is the name of the Amazon S3 bucket;
//
// ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3 prefix;
//
// i-1234567876543 is the instance ID;
//
// awsrunShellScript is the name of the plugin.
OutputS3BucketName *string `min:"3" type:"string"`
// The S3 directory path inside the bucket where the responses to the command
// executions should be stored. This was requested when issuing the command.
// For example, in the following response:
//
// test_folder/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-1234567876543/awsrunShellScript
//
// test_folder is the name of the Amazon S3 bucket;
//
// ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3 prefix;
//
// i-1234567876543 is the instance ID;
//
// awsrunShellScript is the name of the plugin.
OutputS3KeyPrefix *string `type:"string"`
// The name of the region where the output is stored in Amazon S3.
OutputS3Region *string `min:"3" type:"string"`
// A numeric response code generated after executing the plugin.
ResponseCode *int64 `type:"integer"`
// The time the plugin stopped executing. Could stop prematurely if, for example,
// a cancel command was sent.
ResponseFinishDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The time the plugin started executing.
ResponseStartDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The URL for the complete text written by the plugin to stderr. If execution
// is not yet complete, then this string is empty.
StandardErrorUrl *string `type:"string"`
// The URL for the complete text written by the plugin to stdout in Amazon S3.
// If the Amazon S3 bucket for the command was not specified, then this string
// is empty.
StandardOutputUrl *string `type:"string"`
// The status of this plugin. You can execute a document with multiple plugins.
Status *string `type:"string" enum:"CommandPluginStatus"`
// A detailed status of the plugin execution. StatusDetails includes more information
// than Status because it includes states resulting from error and concurrency
// control parameters. StatusDetails can show different results than Status.
// For more information about these statuses, see Monitor Commands (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitor-commands.html)
// (Linux) or Monitor Commands (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/monitor-commands.html)
// (Windows). StatusDetails can be one of the following values:
//
// * Pending The command has not been sent to the instance.
//
// * In Progress The command has been sent to the instance but has not
// reached a terminal state.
//
// * Success The execution of the command or plugin was successfully completed.
// This is a terminal state.
//
// * Delivery Timed Out The command was not delivered to the instance before
// the delivery timeout expired. Delivery timeouts do not count against the
// parent commands MaxErrors limit, but they do contribute to whether the
// parent command status is Success or Incomplete. This is a terminal state.
//
// * Execution Timed Out Command execution started on the instance, but
// the execution was not complete before the execution timeout expired. Execution
// timeouts count against the MaxErrors limit of the parent command. This
// is a terminal state.
//
// * Failed The command was not successful on the instance. For a plugin,
// this indicates that the result code was not zero. For a command invocation,
// this indicates that the result code for one or more plugins was not zero.
// Invocation failures count against the MaxErrors limit of the parent command.
// This is a terminal state.
//
// * Canceled The command was terminated before it was completed. This
// is a terminal state.
//
// * Undeliverable The command can't be delivered to the instance. The
// instance might not exist, or it might not be responding. Undeliverable
// invocations don't count against the parent commands MaxErrors limit,
// and they don't contribute to whether the parent command status is Success
// or Incomplete. This is a terminal state.
//
// * Terminated The parent command exceeded its MaxErrors limit and subsequent
// command invocations were canceled by the system. This is a terminal state.
StatusDetails *string `type:"string"`
}
// String returns the string representation
func (s CommandPlugin) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CommandPlugin) GoString() string {
return s.String()
}
// SetName sets the Name field's value.
func (s *CommandPlugin) SetName(v string) *CommandPlugin {
s.Name = &v
return s
}
// SetOutput sets the Output field's value.
func (s *CommandPlugin) SetOutput(v string) *CommandPlugin {
s.Output = &v
return s
}
// SetOutputS3BucketName sets the OutputS3BucketName field's value.
func (s *CommandPlugin) SetOutputS3BucketName(v string) *CommandPlugin {
s.OutputS3BucketName = &v
return s
}
// SetOutputS3KeyPrefix sets the OutputS3KeyPrefix field's value.
func (s *CommandPlugin) SetOutputS3KeyPrefix(v string) *CommandPlugin {
s.OutputS3KeyPrefix = &v
return s
}
// SetOutputS3Region sets the OutputS3Region field's value.
func (s *CommandPlugin) SetOutputS3Region(v string) *CommandPlugin {
s.OutputS3Region = &v
return s
}
// SetResponseCode sets the ResponseCode field's value.
func (s *CommandPlugin) SetResponseCode(v int64) *CommandPlugin {
s.ResponseCode = &v
return s
}
// SetResponseFinishDateTime sets the ResponseFinishDateTime field's value.
func (s *CommandPlugin) SetResponseFinishDateTime(v time.Time) *CommandPlugin {
s.ResponseFinishDateTime = &v
return s
}
// SetResponseStartDateTime sets the ResponseStartDateTime field's value.
func (s *CommandPlugin) SetResponseStartDateTime(v time.Time) *CommandPlugin {
s.ResponseStartDateTime = &v
return s
}
// SetStandardErrorUrl sets the StandardErrorUrl field's value.
func (s *CommandPlugin) SetStandardErrorUrl(v string) *CommandPlugin {
s.StandardErrorUrl = &v
return s
}
// SetStandardOutputUrl sets the StandardOutputUrl field's value.
func (s *CommandPlugin) SetStandardOutputUrl(v string) *CommandPlugin {
s.StandardOutputUrl = &v
return s
}
// SetStatus sets the Status field's value.
func (s *CommandPlugin) SetStatus(v string) *CommandPlugin {
s.Status = &v
return s
}
// SetStatusDetails sets the StatusDetails field's value.
func (s *CommandPlugin) SetStatusDetails(v string) *CommandPlugin {
s.StatusDetails = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateActivationRequest
type CreateActivationInput struct {
_ struct{} `type:"structure"`
// The name of the registered, managed instance as it will appear in the Amazon
// EC2 console or when you use the AWS command line tools to list EC2 resources.
DefaultInstanceName *string `type:"string"`
// A user-defined description of the resource that you want to register with
// Amazon EC2.
Description *string `type:"string"`
// The date by which this activation request should expire. The default value
// is 24 hours.
ExpirationDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The Amazon Identity and Access Management (IAM) role that you want to assign
// to the managed instance.
//
// IamRole is a required field
IamRole *string `type:"string" required:"true"`
// Specify the maximum number of managed instances you want to register. The
// default value is 1 instance.
RegistrationLimit *int64 `min:"1" type:"integer"`
}
// String returns the string representation
func (s CreateActivationInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateActivationInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CreateActivationInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CreateActivationInput"}
if s.IamRole == nil {
invalidParams.Add(request.NewErrParamRequired("IamRole"))
}
if s.RegistrationLimit != nil && *s.RegistrationLimit < 1 {
invalidParams.Add(request.NewErrParamMinValue("RegistrationLimit", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetDefaultInstanceName sets the DefaultInstanceName field's value.
func (s *CreateActivationInput) SetDefaultInstanceName(v string) *CreateActivationInput {
2016-11-19 19:41:01 +01:00
s.DefaultInstanceName = &v
return s
}
// SetDescription sets the Description field's value.
func (s *CreateActivationInput) SetDescription(v string) *CreateActivationInput {
s.Description = &v
return s
}
// SetExpirationDate sets the ExpirationDate field's value.
func (s *CreateActivationInput) SetExpirationDate(v time.Time) *CreateActivationInput {
s.ExpirationDate = &v
return s
}
// SetIamRole sets the IamRole field's value.
func (s *CreateActivationInput) SetIamRole(v string) *CreateActivationInput {
s.IamRole = &v
return s
}
// SetRegistrationLimit sets the RegistrationLimit field's value.
func (s *CreateActivationInput) SetRegistrationLimit(v int64) *CreateActivationInput {
s.RegistrationLimit = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateActivationResult
type CreateActivationOutput struct {
_ struct{} `type:"structure"`
// The code the system generates when it processes the activation. The activation
// code functions like a password to validate the activation ID.
ActivationCode *string `min:"20" type:"string"`
// The ID number generated by the system when it processed the activation. The
// activation ID functions like a user name.
ActivationId *string `type:"string"`
}
// String returns the string representation
func (s CreateActivationOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateActivationOutput) GoString() string {
return s.String()
}
// SetActivationCode sets the ActivationCode field's value.
func (s *CreateActivationOutput) SetActivationCode(v string) *CreateActivationOutput {
s.ActivationCode = &v
return s
}
// SetActivationId sets the ActivationId field's value.
func (s *CreateActivationOutput) SetActivationId(v string) *CreateActivationOutput {
s.ActivationId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatchRequest
type CreateAssociationBatchInput struct {
_ struct{} `type:"structure"`
// One or more associations.
//
// Entries is a required field
Entries []*CreateAssociationBatchRequestEntry `locationNameList:"entries" min:"1" type:"list" required:"true"`
}
// String returns the string representation
func (s CreateAssociationBatchInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateAssociationBatchInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CreateAssociationBatchInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CreateAssociationBatchInput"}
if s.Entries == nil {
invalidParams.Add(request.NewErrParamRequired("Entries"))
}
if s.Entries != nil && len(s.Entries) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Entries", 1))
}
if s.Entries != nil {
for i, v := range s.Entries {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Entries", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetEntries sets the Entries field's value.
func (s *CreateAssociationBatchInput) SetEntries(v []*CreateAssociationBatchRequestEntry) *CreateAssociationBatchInput {
s.Entries = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatchResult
type CreateAssociationBatchOutput struct {
_ struct{} `type:"structure"`
// Information about the associations that failed.
Failed []*FailedCreateAssociation `locationNameList:"FailedCreateAssociationEntry" type:"list"`
// Information about the associations that succeeded.
Successful []*AssociationDescription `locationNameList:"AssociationDescription" type:"list"`
}
// String returns the string representation
func (s CreateAssociationBatchOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateAssociationBatchOutput) GoString() string {
return s.String()
}
// SetFailed sets the Failed field's value.
func (s *CreateAssociationBatchOutput) SetFailed(v []*FailedCreateAssociation) *CreateAssociationBatchOutput {
s.Failed = v
return s
}
// SetSuccessful sets the Successful field's value.
func (s *CreateAssociationBatchOutput) SetSuccessful(v []*AssociationDescription) *CreateAssociationBatchOutput {
s.Successful = v
return s
}
// Describes the association of an SSM document and an instance.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatchRequestEntry
type CreateAssociationBatchRequestEntry struct {
_ struct{} `type:"structure"`
// The document version.
DocumentVersion *string `type:"string"`
// The ID of the instance.
InstanceId *string `type:"string"`
// The name of the configuration document.
//
// Name is a required field
Name *string `type:"string" required:"true"`
// An Amazon S3 bucket where you want to store the results of this request.
OutputLocation *InstanceAssociationOutputLocation `type:"structure"`
// A description of the parameters for a document.
Parameters map[string][]*string `type:"map"`
// A cron expression that specifies a schedule when the association runs.
ScheduleExpression *string `min:"1" type:"string"`
// The instances targeted by the request.
Targets []*Target `type:"list"`
}
// String returns the string representation
func (s CreateAssociationBatchRequestEntry) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateAssociationBatchRequestEntry) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CreateAssociationBatchRequestEntry) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CreateAssociationBatchRequestEntry"}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if s.ScheduleExpression != nil && len(*s.ScheduleExpression) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ScheduleExpression", 1))
}
if s.OutputLocation != nil {
if err := s.OutputLocation.Validate(); err != nil {
invalidParams.AddNested("OutputLocation", err.(request.ErrInvalidParams))
}
}
if s.Targets != nil {
for i, v := range s.Targets {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Targets", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *CreateAssociationBatchRequestEntry) SetDocumentVersion(v string) *CreateAssociationBatchRequestEntry {
s.DocumentVersion = &v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *CreateAssociationBatchRequestEntry) SetInstanceId(v string) *CreateAssociationBatchRequestEntry {
s.InstanceId = &v
return s
}
// SetName sets the Name field's value.
func (s *CreateAssociationBatchRequestEntry) SetName(v string) *CreateAssociationBatchRequestEntry {
s.Name = &v
return s
}
// SetOutputLocation sets the OutputLocation field's value.
func (s *CreateAssociationBatchRequestEntry) SetOutputLocation(v *InstanceAssociationOutputLocation) *CreateAssociationBatchRequestEntry {
s.OutputLocation = v
return s
}
// SetParameters sets the Parameters field's value.
func (s *CreateAssociationBatchRequestEntry) SetParameters(v map[string][]*string) *CreateAssociationBatchRequestEntry {
s.Parameters = v
return s
}
// SetScheduleExpression sets the ScheduleExpression field's value.
func (s *CreateAssociationBatchRequestEntry) SetScheduleExpression(v string) *CreateAssociationBatchRequestEntry {
s.ScheduleExpression = &v
return s
}
// SetTargets sets the Targets field's value.
func (s *CreateAssociationBatchRequestEntry) SetTargets(v []*Target) *CreateAssociationBatchRequestEntry {
s.Targets = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationRequest
type CreateAssociationInput struct {
_ struct{} `type:"structure"`
// The document version you want to associate with the target(s). Can be a specific
// version or the default version.
DocumentVersion *string `type:"string"`
// The instance ID.
InstanceId *string `type:"string"`
// The name of the SSM document.
//
// Name is a required field
Name *string `type:"string" required:"true"`
// An Amazon S3 bucket where you want to store the output details of the request.
// For example:
//
// "{ \"S3Location\": { \"OutputS3Region\": \"<region>\", \"OutputS3BucketName\":
// \"bucket name\", \"OutputS3KeyPrefix\": \"folder name\" } }"
OutputLocation *InstanceAssociationOutputLocation `type:"structure"`
// The parameters for the documents runtime configuration.
Parameters map[string][]*string `type:"map"`
// A cron expression when the association will be applied to the target(s).
// Supported expressions are every half, 1, 2, 4, 8 or 12 hour(s); every specified
// day and time of the week. For example: cron(0 0/30 * 1/1 * ? *) to run every
// thirty minutes; cron(0 0 0/4 1/1 * ? *) to run every four hours; and cron(0
// 0 10 ? * SUN *) to run every Sunday at 10 a.m.
ScheduleExpression *string `min:"1" type:"string"`
// The targets (either instances or tags) for the association. Instances are
// specified using Key=instanceids,Values=<instanceid1>,<instanceid2>. Tags
// are specified using Key=<tag name>,Values=<tag value>.
Targets []*Target `type:"list"`
}
// String returns the string representation
func (s CreateAssociationInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateAssociationInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CreateAssociationInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CreateAssociationInput"}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if s.ScheduleExpression != nil && len(*s.ScheduleExpression) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ScheduleExpression", 1))
}
if s.OutputLocation != nil {
if err := s.OutputLocation.Validate(); err != nil {
invalidParams.AddNested("OutputLocation", err.(request.ErrInvalidParams))
}
}
if s.Targets != nil {
for i, v := range s.Targets {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Targets", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *CreateAssociationInput) SetDocumentVersion(v string) *CreateAssociationInput {
s.DocumentVersion = &v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *CreateAssociationInput) SetInstanceId(v string) *CreateAssociationInput {
s.InstanceId = &v
return s
}
// SetName sets the Name field's value.
func (s *CreateAssociationInput) SetName(v string) *CreateAssociationInput {
s.Name = &v
return s
}
// SetOutputLocation sets the OutputLocation field's value.
func (s *CreateAssociationInput) SetOutputLocation(v *InstanceAssociationOutputLocation) *CreateAssociationInput {
s.OutputLocation = v
return s
}
// SetParameters sets the Parameters field's value.
func (s *CreateAssociationInput) SetParameters(v map[string][]*string) *CreateAssociationInput {
s.Parameters = v
return s
}
// SetScheduleExpression sets the ScheduleExpression field's value.
func (s *CreateAssociationInput) SetScheduleExpression(v string) *CreateAssociationInput {
s.ScheduleExpression = &v
return s
}
// SetTargets sets the Targets field's value.
func (s *CreateAssociationInput) SetTargets(v []*Target) *CreateAssociationInput {
s.Targets = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationResult
type CreateAssociationOutput struct {
_ struct{} `type:"structure"`
// Information about the association.
AssociationDescription *AssociationDescription `type:"structure"`
}
// String returns the string representation
func (s CreateAssociationOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateAssociationOutput) GoString() string {
return s.String()
}
// SetAssociationDescription sets the AssociationDescription field's value.
func (s *CreateAssociationOutput) SetAssociationDescription(v *AssociationDescription) *CreateAssociationOutput {
s.AssociationDescription = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateDocumentRequest
type CreateDocumentInput struct {
_ struct{} `type:"structure"`
// A valid JSON string.
//
// Content is a required field
Content *string `min:"1" type:"string" required:"true"`
// The type of document to create. Valid document types include: Policy, Automation,
// and Command.
DocumentType *string `type:"string" enum:"DocumentType"`
// A name for the SSM document.
//
// Name is a required field
Name *string `type:"string" required:"true"`
}
// String returns the string representation
func (s CreateDocumentInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateDocumentInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CreateDocumentInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CreateDocumentInput"}
if s.Content == nil {
invalidParams.Add(request.NewErrParamRequired("Content"))
}
if s.Content != nil && len(*s.Content) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Content", 1))
}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetContent sets the Content field's value.
func (s *CreateDocumentInput) SetContent(v string) *CreateDocumentInput {
s.Content = &v
return s
}
// SetDocumentType sets the DocumentType field's value.
func (s *CreateDocumentInput) SetDocumentType(v string) *CreateDocumentInput {
s.DocumentType = &v
return s
}
// SetName sets the Name field's value.
func (s *CreateDocumentInput) SetName(v string) *CreateDocumentInput {
s.Name = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateDocumentResult
type CreateDocumentOutput struct {
_ struct{} `type:"structure"`
// Information about the SSM document.
DocumentDescription *DocumentDescription `type:"structure"`
}
// String returns the string representation
func (s CreateDocumentOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateDocumentOutput) GoString() string {
return s.String()
}
// SetDocumentDescription sets the DocumentDescription field's value.
func (s *CreateDocumentOutput) SetDocumentDescription(v *DocumentDescription) *CreateDocumentOutput {
s.DocumentDescription = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateMaintenanceWindowRequest
type CreateMaintenanceWindowInput struct {
_ struct{} `type:"structure"`
// Whether targets must be registered with the Maintenance Window before tasks
// can be defined for those targets.
//
// AllowUnassociatedTargets is a required field
AllowUnassociatedTargets *bool `type:"boolean" required:"true"`
// User-provided idempotency token.
ClientToken *string `min:"1" type:"string" idempotencyToken:"true"`
// The number of hours before the end of the Maintenance Window that Systems
// Manager stops scheduling new tasks for execution.
//
// Cutoff is a required field
Cutoff *int64 `type:"integer" required:"true"`
// The duration of the Maintenance Window in hours.
//
// Duration is a required field
Duration *int64 `min:"1" type:"integer" required:"true"`
// The name of the Maintenance Window.
//
// Name is a required field
Name *string `min:"3" type:"string" required:"true"`
// The schedule of the Maintenance Window in the form of a cron or rate expression.
//
// Schedule is a required field
Schedule *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateMaintenanceWindowInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateMaintenanceWindowInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CreateMaintenanceWindowInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CreateMaintenanceWindowInput"}
if s.AllowUnassociatedTargets == nil {
invalidParams.Add(request.NewErrParamRequired("AllowUnassociatedTargets"))
}
if s.ClientToken != nil && len(*s.ClientToken) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ClientToken", 1))
}
if s.Cutoff == nil {
invalidParams.Add(request.NewErrParamRequired("Cutoff"))
}
if s.Duration == nil {
invalidParams.Add(request.NewErrParamRequired("Duration"))
}
if s.Duration != nil && *s.Duration < 1 {
invalidParams.Add(request.NewErrParamMinValue("Duration", 1))
}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if s.Name != nil && len(*s.Name) < 3 {
invalidParams.Add(request.NewErrParamMinLen("Name", 3))
}
if s.Schedule == nil {
invalidParams.Add(request.NewErrParamRequired("Schedule"))
}
if s.Schedule != nil && len(*s.Schedule) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Schedule", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetAllowUnassociatedTargets sets the AllowUnassociatedTargets field's value.
func (s *CreateMaintenanceWindowInput) SetAllowUnassociatedTargets(v bool) *CreateMaintenanceWindowInput {
s.AllowUnassociatedTargets = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetClientToken sets the ClientToken field's value.
func (s *CreateMaintenanceWindowInput) SetClientToken(v string) *CreateMaintenanceWindowInput {
s.ClientToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetCutoff sets the Cutoff field's value.
func (s *CreateMaintenanceWindowInput) SetCutoff(v int64) *CreateMaintenanceWindowInput {
s.Cutoff = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDuration sets the Duration field's value.
func (s *CreateMaintenanceWindowInput) SetDuration(v int64) *CreateMaintenanceWindowInput {
s.Duration = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *CreateMaintenanceWindowInput) SetName(v string) *CreateMaintenanceWindowInput {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetSchedule sets the Schedule field's value.
func (s *CreateMaintenanceWindowInput) SetSchedule(v string) *CreateMaintenanceWindowInput {
s.Schedule = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateMaintenanceWindowResult
type CreateMaintenanceWindowOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the created Maintenance Window.
WindowId *string `min:"20" type:"string"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s CreateMaintenanceWindowOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateMaintenanceWindowOutput) GoString() string {
return s.String()
}
// SetWindowId sets the WindowId field's value.
func (s *CreateMaintenanceWindowOutput) SetWindowId(v string) *CreateMaintenanceWindowOutput {
s.WindowId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreatePatchBaselineRequest
type CreatePatchBaselineInput struct {
_ struct{} `type:"structure"`
// A set of rules used to include patches in the baseline.
ApprovalRules *PatchRuleGroup `type:"structure"`
// A list of explicitly approved patches for the baseline.
ApprovedPatches []*string `type:"list"`
// Caller-provided idempotency token.
ClientToken *string `min:"1" type:"string" idempotencyToken:"true"`
// A description of the patch baseline.
Description *string `min:"1" type:"string"`
// A set of global filters used to exclude patches from the baseline.
GlobalFilters *PatchFilterGroup `type:"structure"`
// The name of the patch baseline.
2016-12-02 15:37:53 +01:00
//
// Name is a required field
Name *string `min:"3" type:"string" required:"true"`
// A list of explicitly rejected patches for the baseline.
RejectedPatches []*string `type:"list"`
}
// String returns the string representation
func (s CreatePatchBaselineInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreatePatchBaselineInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CreatePatchBaselineInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CreatePatchBaselineInput"}
if s.ClientToken != nil && len(*s.ClientToken) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ClientToken", 1))
}
if s.Description != nil && len(*s.Description) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Description", 1))
}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if s.Name != nil && len(*s.Name) < 3 {
invalidParams.Add(request.NewErrParamMinLen("Name", 3))
}
if s.ApprovalRules != nil {
if err := s.ApprovalRules.Validate(); err != nil {
invalidParams.AddNested("ApprovalRules", err.(request.ErrInvalidParams))
}
}
if s.GlobalFilters != nil {
if err := s.GlobalFilters.Validate(); err != nil {
invalidParams.AddNested("GlobalFilters", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetApprovalRules sets the ApprovalRules field's value.
func (s *CreatePatchBaselineInput) SetApprovalRules(v *PatchRuleGroup) *CreatePatchBaselineInput {
s.ApprovalRules = v
return s
}
// SetApprovedPatches sets the ApprovedPatches field's value.
func (s *CreatePatchBaselineInput) SetApprovedPatches(v []*string) *CreatePatchBaselineInput {
s.ApprovedPatches = v
return s
}
// SetClientToken sets the ClientToken field's value.
func (s *CreatePatchBaselineInput) SetClientToken(v string) *CreatePatchBaselineInput {
s.ClientToken = &v
return s
}
// SetDescription sets the Description field's value.
func (s *CreatePatchBaselineInput) SetDescription(v string) *CreatePatchBaselineInput {
s.Description = &v
return s
}
// SetGlobalFilters sets the GlobalFilters field's value.
func (s *CreatePatchBaselineInput) SetGlobalFilters(v *PatchFilterGroup) *CreatePatchBaselineInput {
s.GlobalFilters = v
return s
}
// SetName sets the Name field's value.
func (s *CreatePatchBaselineInput) SetName(v string) *CreatePatchBaselineInput {
s.Name = &v
return s
}
// SetRejectedPatches sets the RejectedPatches field's value.
func (s *CreatePatchBaselineInput) SetRejectedPatches(v []*string) *CreatePatchBaselineInput {
s.RejectedPatches = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreatePatchBaselineResult
type CreatePatchBaselineOutput struct {
_ struct{} `type:"structure"`
// The ID of the created patch baseline.
BaselineId *string `min:"20" type:"string"`
}
// String returns the string representation
func (s CreatePatchBaselineOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreatePatchBaselineOutput) GoString() string {
return s.String()
}
// SetBaselineId sets the BaselineId field's value.
func (s *CreatePatchBaselineOutput) SetBaselineId(v string) *CreatePatchBaselineOutput {
s.BaselineId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteActivationRequest
type DeleteActivationInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The ID of the activation that you want to delete.
2016-12-02 15:37:53 +01:00
//
// ActivationId is a required field
ActivationId *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeleteActivationInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteActivationInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteActivationInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeleteActivationInput"}
if s.ActivationId == nil {
invalidParams.Add(request.NewErrParamRequired("ActivationId"))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetActivationId sets the ActivationId field's value.
func (s *DeleteActivationInput) SetActivationId(v string) *DeleteActivationInput {
s.ActivationId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteActivationResult
type DeleteActivationOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DeleteActivationOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteActivationOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteAssociationRequest
type DeleteAssociationInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The association ID that you want to delete.
2016-12-02 15:37:53 +01:00
AssociationId *string `type:"string"`
// The ID of the instance.
InstanceId *string `type:"string"`
// The name of the SSM document.
Name *string `type:"string"`
}
// String returns the string representation
func (s DeleteAssociationInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteAssociationInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetAssociationId sets the AssociationId field's value.
func (s *DeleteAssociationInput) SetAssociationId(v string) *DeleteAssociationInput {
2016-12-02 15:37:53 +01:00
s.AssociationId = &v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *DeleteAssociationInput) SetInstanceId(v string) *DeleteAssociationInput {
2016-12-02 15:37:53 +01:00
s.InstanceId = &v
return s
}
// SetName sets the Name field's value.
func (s *DeleteAssociationInput) SetName(v string) *DeleteAssociationInput {
2016-12-02 15:37:53 +01:00
s.Name = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteAssociationResult
type DeleteAssociationOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeleteAssociationOutput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DeleteAssociationOutput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteDocumentRequest
type DeleteDocumentInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The name of the SSM document.
//
// Name is a required field
Name *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeleteDocumentInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteDocumentInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteDocumentInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeleteDocumentInput"}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-12-02 15:37:53 +01:00
}
// SetName sets the Name field's value.
func (s *DeleteDocumentInput) SetName(v string) *DeleteDocumentInput {
2016-12-02 15:37:53 +01:00
s.Name = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteDocumentResult
type DeleteDocumentOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeleteDocumentOutput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DeleteDocumentOutput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteMaintenanceWindowRequest
type DeleteMaintenanceWindowInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the Maintenance Window to delete.
2016-12-02 15:37:53 +01:00
//
// WindowId is a required field
WindowId *string `min:"20" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeleteMaintenanceWindowInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteMaintenanceWindowInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteMaintenanceWindowInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeleteMaintenanceWindowInput"}
if s.WindowId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowId"))
2016-12-02 15:37:53 +01:00
}
if s.WindowId != nil && len(*s.WindowId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("WindowId", 20))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetWindowId sets the WindowId field's value.
func (s *DeleteMaintenanceWindowInput) SetWindowId(v string) *DeleteMaintenanceWindowInput {
s.WindowId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteMaintenanceWindowResult
type DeleteMaintenanceWindowOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the deleted Maintenance Window.
WindowId *string `min:"20" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeleteMaintenanceWindowOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteMaintenanceWindowOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetWindowId sets the WindowId field's value.
func (s *DeleteMaintenanceWindowOutput) SetWindowId(v string) *DeleteMaintenanceWindowOutput {
s.WindowId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteParameterRequest
type DeleteParameterInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The name of the parameter to delete.
2016-12-02 15:37:53 +01:00
//
// Name is a required field
Name *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeleteParameterInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteParameterInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteParameterInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeleteParameterInput"}
2016-12-02 15:37:53 +01:00
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if s.Name != nil && len(*s.Name) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Name", 1))
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetName sets the Name field's value.
func (s *DeleteParameterInput) SetName(v string) *DeleteParameterInput {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteParameterResult
type DeleteParameterOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeleteParameterOutput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DeleteParameterOutput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeletePatchBaselineRequest
type DeletePatchBaselineInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the patch baseline to delete.
//
// BaselineId is a required field
BaselineId *string `min:"20" type:"string" required:"true"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s DeletePatchBaselineInput) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s DeletePatchBaselineInput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeletePatchBaselineInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeletePatchBaselineInput"}
if s.BaselineId == nil {
invalidParams.Add(request.NewErrParamRequired("BaselineId"))
}
if s.BaselineId != nil && len(*s.BaselineId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("BaselineId", 20))
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetBaselineId sets the BaselineId field's value.
func (s *DeletePatchBaselineInput) SetBaselineId(v string) *DeletePatchBaselineInput {
s.BaselineId = &v
return s
}
2016-12-02 15:37:53 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeletePatchBaselineResult
type DeletePatchBaselineOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The ID of the deleted patch baseline.
BaselineId *string `min:"20" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeletePatchBaselineOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeletePatchBaselineOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetBaselineId sets the BaselineId field's value.
func (s *DeletePatchBaselineOutput) SetBaselineId(v string) *DeletePatchBaselineOutput {
s.BaselineId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterManagedInstanceRequest
type DeregisterManagedInstanceInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The ID assigned to the managed instance when you registered it using the
// activation process.
//
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeregisterManagedInstanceInput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DeregisterManagedInstanceInput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeregisterManagedInstanceInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeregisterManagedInstanceInput"}
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-12-02 15:37:53 +01:00
}
// SetInstanceId sets the InstanceId field's value.
func (s *DeregisterManagedInstanceInput) SetInstanceId(v string) *DeregisterManagedInstanceInput {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterManagedInstanceResult
type DeregisterManagedInstanceOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeregisterManagedInstanceOutput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DeregisterManagedInstanceOutput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterPatchBaselineForPatchGroupRequest
type DeregisterPatchBaselineForPatchGroupInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the patch baseline to deregister the patch group from.
2016-12-02 15:37:53 +01:00
//
// BaselineId is a required field
BaselineId *string `min:"20" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The name of the patch group that should be deregistered from the patch baseline.
2016-12-02 15:37:53 +01:00
//
// PatchGroup is a required field
PatchGroup *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeregisterPatchBaselineForPatchGroupInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeregisterPatchBaselineForPatchGroupInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeregisterPatchBaselineForPatchGroupInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeregisterPatchBaselineForPatchGroupInput"}
if s.BaselineId == nil {
invalidParams.Add(request.NewErrParamRequired("BaselineId"))
2016-12-02 15:37:53 +01:00
}
if s.BaselineId != nil && len(*s.BaselineId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("BaselineId", 20))
2016-12-02 15:37:53 +01:00
}
if s.PatchGroup == nil {
invalidParams.Add(request.NewErrParamRequired("PatchGroup"))
}
if s.PatchGroup != nil && len(*s.PatchGroup) < 1 {
invalidParams.Add(request.NewErrParamMinLen("PatchGroup", 1))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetBaselineId sets the BaselineId field's value.
func (s *DeregisterPatchBaselineForPatchGroupInput) SetBaselineId(v string) *DeregisterPatchBaselineForPatchGroupInput {
s.BaselineId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPatchGroup sets the PatchGroup field's value.
func (s *DeregisterPatchBaselineForPatchGroupInput) SetPatchGroup(v string) *DeregisterPatchBaselineForPatchGroupInput {
s.PatchGroup = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterPatchBaselineForPatchGroupResult
type DeregisterPatchBaselineForPatchGroupOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the patch baseline the patch group was deregistered from.
BaselineId *string `min:"20" type:"string"`
2016-12-02 15:37:53 +01:00
// The name of the patch group deregistered from the patch baseline.
PatchGroup *string `min:"1" type:"string"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s DeregisterPatchBaselineForPatchGroupOutput) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s DeregisterPatchBaselineForPatchGroupOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetBaselineId sets the BaselineId field's value.
func (s *DeregisterPatchBaselineForPatchGroupOutput) SetBaselineId(v string) *DeregisterPatchBaselineForPatchGroupOutput {
s.BaselineId = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetPatchGroup sets the PatchGroup field's value.
func (s *DeregisterPatchBaselineForPatchGroupOutput) SetPatchGroup(v string) *DeregisterPatchBaselineForPatchGroupOutput {
s.PatchGroup = &v
return s
}
2016-12-02 15:37:53 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterTargetFromMaintenanceWindowRequest
type DeregisterTargetFromMaintenanceWindowInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The ID of the Maintenance Window the target should be removed from.
//
// WindowId is a required field
WindowId *string `min:"20" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The ID of the target definition to remove.
//
// WindowTargetId is a required field
WindowTargetId *string `min:"36" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeregisterTargetFromMaintenanceWindowInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeregisterTargetFromMaintenanceWindowInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeregisterTargetFromMaintenanceWindowInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeregisterTargetFromMaintenanceWindowInput"}
if s.WindowId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowId"))
}
if s.WindowId != nil && len(*s.WindowId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("WindowId", 20))
}
if s.WindowTargetId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowTargetId"))
}
if s.WindowTargetId != nil && len(*s.WindowTargetId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("WindowTargetId", 36))
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-12-02 15:37:53 +01:00
}
// SetWindowId sets the WindowId field's value.
func (s *DeregisterTargetFromMaintenanceWindowInput) SetWindowId(v string) *DeregisterTargetFromMaintenanceWindowInput {
s.WindowId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowTargetId sets the WindowTargetId field's value.
func (s *DeregisterTargetFromMaintenanceWindowInput) SetWindowTargetId(v string) *DeregisterTargetFromMaintenanceWindowInput {
s.WindowTargetId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterTargetFromMaintenanceWindowResult
type DeregisterTargetFromMaintenanceWindowOutput struct {
_ struct{} `type:"structure"`
// The ID of the Maintenance Window the target was removed from.
WindowId *string `min:"20" type:"string"`
// The ID of the removed target definition.
WindowTargetId *string `min:"36" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeregisterTargetFromMaintenanceWindowOutput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DeregisterTargetFromMaintenanceWindowOutput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// SetWindowId sets the WindowId field's value.
func (s *DeregisterTargetFromMaintenanceWindowOutput) SetWindowId(v string) *DeregisterTargetFromMaintenanceWindowOutput {
s.WindowId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowTargetId sets the WindowTargetId field's value.
func (s *DeregisterTargetFromMaintenanceWindowOutput) SetWindowTargetId(v string) *DeregisterTargetFromMaintenanceWindowOutput {
s.WindowTargetId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterTaskFromMaintenanceWindowRequest
type DeregisterTaskFromMaintenanceWindowInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the Maintenance Window the task should be removed from.
2016-12-02 15:37:53 +01:00
//
// WindowId is a required field
WindowId *string `min:"20" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The ID of the task to remove from the Maintenance Window.
//
// WindowTaskId is a required field
WindowTaskId *string `min:"36" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DeregisterTaskFromMaintenanceWindowInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeregisterTaskFromMaintenanceWindowInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeregisterTaskFromMaintenanceWindowInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeregisterTaskFromMaintenanceWindowInput"}
if s.WindowId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowId"))
2016-12-02 15:37:53 +01:00
}
if s.WindowId != nil && len(*s.WindowId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("WindowId", 20))
}
if s.WindowTaskId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowTaskId"))
}
if s.WindowTaskId != nil && len(*s.WindowTaskId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("WindowTaskId", 36))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetWindowId sets the WindowId field's value.
func (s *DeregisterTaskFromMaintenanceWindowInput) SetWindowId(v string) *DeregisterTaskFromMaintenanceWindowInput {
s.WindowId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowTaskId sets the WindowTaskId field's value.
func (s *DeregisterTaskFromMaintenanceWindowInput) SetWindowTaskId(v string) *DeregisterTaskFromMaintenanceWindowInput {
s.WindowTaskId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterTaskFromMaintenanceWindowResult
type DeregisterTaskFromMaintenanceWindowOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the Maintenance Window the task was removed from.
WindowId *string `min:"20" type:"string"`
2016-12-02 15:37:53 +01:00
// The ID of the task removed from the Maintenance Window.
WindowTaskId *string `min:"36" type:"string"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s DeregisterTaskFromMaintenanceWindowOutput) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s DeregisterTaskFromMaintenanceWindowOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetWindowId sets the WindowId field's value.
func (s *DeregisterTaskFromMaintenanceWindowOutput) SetWindowId(v string) *DeregisterTaskFromMaintenanceWindowOutput {
s.WindowId = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetWindowTaskId sets the WindowTaskId field's value.
func (s *DeregisterTaskFromMaintenanceWindowOutput) SetWindowTaskId(v string) *DeregisterTaskFromMaintenanceWindowOutput {
s.WindowTaskId = &v
return s
}
2016-12-02 15:37:53 +01:00
// Filter for the DescribeActivation API.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeActivationsFilter
type DescribeActivationsFilter struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The name of the filter.
FilterKey *string `type:"string" enum:"DescribeActivationsFilterKeys"`
2016-12-02 15:37:53 +01:00
// The filter values.
FilterValues []*string `type:"list"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s DescribeActivationsFilter) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s DescribeActivationsFilter) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetFilterKey sets the FilterKey field's value.
func (s *DescribeActivationsFilter) SetFilterKey(v string) *DescribeActivationsFilter {
s.FilterKey = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetFilterValues sets the FilterValues field's value.
func (s *DescribeActivationsFilter) SetFilterValues(v []*string) *DescribeActivationsFilter {
s.FilterValues = v
return s
}
2016-12-02 15:37:53 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeActivationsRequest
type DescribeActivationsInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// A filter to view information about your activations.
Filters []*DescribeActivationsFilter `type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"1" type:"integer"`
2016-12-02 15:37:53 +01:00
// A token to start the list. Use this token to get the next set of results.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeActivationsInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeActivationsInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeActivationsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeActivationsInput"}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-12-02 15:37:53 +01:00
}
// SetFilters sets the Filters field's value.
func (s *DescribeActivationsInput) SetFilters(v []*DescribeActivationsFilter) *DescribeActivationsInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeActivationsInput) SetMaxResults(v int64) *DescribeActivationsInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeActivationsInput) SetNextToken(v string) *DescribeActivationsInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeActivationsResult
type DescribeActivationsOutput struct {
_ struct{} `type:"structure"`
// A list of activations for your AWS account.
ActivationList []*Activation `type:"list"`
// The token for the next set of items to return. Use this token to get the
// next set of results.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeActivationsOutput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DescribeActivationsOutput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// SetActivationList sets the ActivationList field's value.
func (s *DescribeActivationsOutput) SetActivationList(v []*Activation) *DescribeActivationsOutput {
s.ActivationList = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeActivationsOutput) SetNextToken(v string) *DescribeActivationsOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociationRequest
type DescribeAssociationInput struct {
_ struct{} `type:"structure"`
// The association ID for which you want information.
AssociationId *string `type:"string"`
// The instance ID.
InstanceId *string `type:"string"`
// The name of the SSM document.
Name *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeAssociationInput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DescribeAssociationInput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// SetAssociationId sets the AssociationId field's value.
func (s *DescribeAssociationInput) SetAssociationId(v string) *DescribeAssociationInput {
s.AssociationId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *DescribeAssociationInput) SetInstanceId(v string) *DescribeAssociationInput {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *DescribeAssociationInput) SetName(v string) *DescribeAssociationInput {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociationResult
type DescribeAssociationOutput struct {
_ struct{} `type:"structure"`
// Information about the association.
AssociationDescription *AssociationDescription `type:"structure"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeAssociationOutput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DescribeAssociationOutput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// SetAssociationDescription sets the AssociationDescription field's value.
func (s *DescribeAssociationOutput) SetAssociationDescription(v *AssociationDescription) *DescribeAssociationOutput {
s.AssociationDescription = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationExecutionsRequest
type DescribeAutomationExecutionsInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Filters used to limit the scope of executions that are requested.
Filters []*AutomationExecutionFilter `min:"1" type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"1" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeAutomationExecutionsInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeAutomationExecutionsInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeAutomationExecutionsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeAutomationExecutionsInput"}
if s.Filters != nil && len(s.Filters) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Filters", 1))
2016-12-02 15:37:53 +01:00
}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
2016-12-02 15:37:53 +01:00
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeAutomationExecutionsInput) SetFilters(v []*AutomationExecutionFilter) *DescribeAutomationExecutionsInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeAutomationExecutionsInput) SetMaxResults(v int64) *DescribeAutomationExecutionsInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeAutomationExecutionsInput) SetNextToken(v string) *DescribeAutomationExecutionsInput {
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationExecutionsResult
type DescribeAutomationExecutionsOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The list of details about each automation execution which has occurred which
// matches the filter specification, if any.
AutomationExecutionMetadataList []*AutomationExecutionMetadata `type:"list"`
2016-12-02 15:37:53 +01:00
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s DescribeAutomationExecutionsOutput) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s DescribeAutomationExecutionsOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetAutomationExecutionMetadataList sets the AutomationExecutionMetadataList field's value.
func (s *DescribeAutomationExecutionsOutput) SetAutomationExecutionMetadataList(v []*AutomationExecutionMetadata) *DescribeAutomationExecutionsOutput {
s.AutomationExecutionMetadataList = v
return s
}
2016-12-02 15:37:53 +01:00
// SetNextToken sets the NextToken field's value.
func (s *DescribeAutomationExecutionsOutput) SetNextToken(v string) *DescribeAutomationExecutionsOutput {
s.NextToken = &v
return s
}
2016-12-02 15:37:53 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAvailablePatchesRequest
type DescribeAvailablePatchesInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// Filters used to scope down the returned patches.
Filters []*PatchOrchestratorFilter `type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of patches to return (per page).
MaxResults *int64 `min:"1" type:"integer"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s DescribeAvailablePatchesInput) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s DescribeAvailablePatchesInput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeAvailablePatchesInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeAvailablePatchesInput"}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeAvailablePatchesInput) SetFilters(v []*PatchOrchestratorFilter) *DescribeAvailablePatchesInput {
s.Filters = v
return s
}
2016-12-02 15:37:53 +01:00
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeAvailablePatchesInput) SetMaxResults(v int64) *DescribeAvailablePatchesInput {
s.MaxResults = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeAvailablePatchesInput) SetNextToken(v string) *DescribeAvailablePatchesInput {
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAvailablePatchesResult
type DescribeAvailablePatchesOutput struct {
_ struct{} `type:"structure"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
// An array of patches. Each entry in the array is a patch structure.
Patches []*Patch `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeAvailablePatchesOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeAvailablePatchesOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeAvailablePatchesOutput) SetNextToken(v string) *DescribeAvailablePatchesOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPatches sets the Patches field's value.
func (s *DescribeAvailablePatchesOutput) SetPatches(v []*Patch) *DescribeAvailablePatchesOutput {
s.Patches = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentRequest
type DescribeDocumentInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The document version for which you want information. Can be a specific version
// or the default version.
DocumentVersion *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The name of the SSM document.
//
// Name is a required field
Name *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeDocumentInput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DescribeDocumentInput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeDocumentInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeDocumentInput"}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-12-02 15:37:53 +01:00
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *DescribeDocumentInput) SetDocumentVersion(v string) *DescribeDocumentInput {
s.DocumentVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *DescribeDocumentInput) SetName(v string) *DescribeDocumentInput {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentResult
type DescribeDocumentOutput struct {
_ struct{} `type:"structure"`
// Information about the SSM document.
Document *DocumentDescription `type:"structure"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeDocumentOutput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DescribeDocumentOutput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// SetDocument sets the Document field's value.
func (s *DescribeDocumentOutput) SetDocument(v *DocumentDescription) *DescribeDocumentOutput {
s.Document = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentPermissionRequest
type DescribeDocumentPermissionInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The name of the document for which you are the owner.
2016-12-02 15:37:53 +01:00
//
// Name is a required field
Name *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The permission type for the document. The permission type can be Share.
2016-12-02 15:37:53 +01:00
//
// PermissionType is a required field
PermissionType *string `type:"string" required:"true" enum:"DocumentPermissionType"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s DescribeDocumentPermissionInput) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s DescribeDocumentPermissionInput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeDocumentPermissionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeDocumentPermissionInput"}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if s.PermissionType == nil {
invalidParams.Add(request.NewErrParamRequired("PermissionType"))
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetName sets the Name field's value.
func (s *DescribeDocumentPermissionInput) SetName(v string) *DescribeDocumentPermissionInput {
s.Name = &v
return s
}
// SetPermissionType sets the PermissionType field's value.
func (s *DescribeDocumentPermissionInput) SetPermissionType(v string) *DescribeDocumentPermissionInput {
s.PermissionType = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentPermissionResponse
type DescribeDocumentPermissionOutput struct {
_ struct{} `type:"structure"`
// The account IDs that have permission to use this document. The ID can be
// either an AWS account or All.
AccountIds []*string `locationNameList:"AccountId" type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeDocumentPermissionOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeDocumentPermissionOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetAccountIds sets the AccountIds field's value.
func (s *DescribeDocumentPermissionOutput) SetAccountIds(v []*string) *DescribeDocumentPermissionOutput {
s.AccountIds = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeEffectiveInstanceAssociationsRequest
type DescribeEffectiveInstanceAssociationsInput struct {
_ struct{} `type:"structure"`
// The instance ID for which you want to view all associations.
//
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"1" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeEffectiveInstanceAssociationsInput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DescribeEffectiveInstanceAssociationsInput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeEffectiveInstanceAssociationsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeEffectiveInstanceAssociationsInput"}
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-12-02 15:37:53 +01:00
}
// SetInstanceId sets the InstanceId field's value.
func (s *DescribeEffectiveInstanceAssociationsInput) SetInstanceId(v string) *DescribeEffectiveInstanceAssociationsInput {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeEffectiveInstanceAssociationsInput) SetMaxResults(v int64) *DescribeEffectiveInstanceAssociationsInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeEffectiveInstanceAssociationsInput) SetNextToken(v string) *DescribeEffectiveInstanceAssociationsInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeEffectiveInstanceAssociationsResult
type DescribeEffectiveInstanceAssociationsOutput struct {
_ struct{} `type:"structure"`
// The associations for the requested instance.
Associations []*InstanceAssociation `type:"list"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeEffectiveInstanceAssociationsOutput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DescribeEffectiveInstanceAssociationsOutput) GoString() string {
return s.String()
}
// SetAssociations sets the Associations field's value.
func (s *DescribeEffectiveInstanceAssociationsOutput) SetAssociations(v []*InstanceAssociation) *DescribeEffectiveInstanceAssociationsOutput {
s.Associations = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeEffectiveInstanceAssociationsOutput) SetNextToken(v string) *DescribeEffectiveInstanceAssociationsOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeEffectivePatchesForPatchBaselineRequest
type DescribeEffectivePatchesForPatchBaselineInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the patch baseline to retrieve the effective patches for.
2016-12-02 15:37:53 +01:00
//
// BaselineId is a required field
BaselineId *string `min:"20" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The maximum number of patches to return (per page).
MaxResults *int64 `min:"1" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeEffectivePatchesForPatchBaselineInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeEffectivePatchesForPatchBaselineInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeEffectivePatchesForPatchBaselineInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeEffectivePatchesForPatchBaselineInput"}
if s.BaselineId == nil {
invalidParams.Add(request.NewErrParamRequired("BaselineId"))
2016-12-02 15:37:53 +01:00
}
if s.BaselineId != nil && len(*s.BaselineId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("BaselineId", 20))
}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetBaselineId sets the BaselineId field's value.
func (s *DescribeEffectivePatchesForPatchBaselineInput) SetBaselineId(v string) *DescribeEffectivePatchesForPatchBaselineInput {
s.BaselineId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeEffectivePatchesForPatchBaselineInput) SetMaxResults(v int64) *DescribeEffectivePatchesForPatchBaselineInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeEffectivePatchesForPatchBaselineInput) SetNextToken(v string) *DescribeEffectivePatchesForPatchBaselineInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeEffectivePatchesForPatchBaselineResult
type DescribeEffectivePatchesForPatchBaselineOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// An array of patches and patch status.
EffectivePatches []*EffectivePatch `type:"list"`
2016-12-02 15:37:53 +01:00
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeEffectivePatchesForPatchBaselineOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeEffectivePatchesForPatchBaselineOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetEffectivePatches sets the EffectivePatches field's value.
func (s *DescribeEffectivePatchesForPatchBaselineOutput) SetEffectivePatches(v []*EffectivePatch) *DescribeEffectivePatchesForPatchBaselineOutput {
s.EffectivePatches = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeEffectivePatchesForPatchBaselineOutput) SetNextToken(v string) *DescribeEffectivePatchesForPatchBaselineOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceAssociationsStatusRequest
type DescribeInstanceAssociationsStatusInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The instance IDs for which you want association status information.
2016-12-02 15:37:53 +01:00
//
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"1" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeInstanceAssociationsStatusInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInstanceAssociationsStatusInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeInstanceAssociationsStatusInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeInstanceAssociationsStatusInput"}
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetInstanceId sets the InstanceId field's value.
func (s *DescribeInstanceAssociationsStatusInput) SetInstanceId(v string) *DescribeInstanceAssociationsStatusInput {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeInstanceAssociationsStatusInput) SetMaxResults(v int64) *DescribeInstanceAssociationsStatusInput {
s.MaxResults = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeInstanceAssociationsStatusInput) SetNextToken(v string) *DescribeInstanceAssociationsStatusInput {
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceAssociationsStatusResult
type DescribeInstanceAssociationsStatusOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Status information about the association.
InstanceAssociationStatusInfos []*InstanceAssociationStatusInfo `type:"list"`
2016-12-02 15:37:53 +01:00
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeInstanceAssociationsStatusOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInstanceAssociationsStatusOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetInstanceAssociationStatusInfos sets the InstanceAssociationStatusInfos field's value.
func (s *DescribeInstanceAssociationsStatusOutput) SetInstanceAssociationStatusInfos(v []*InstanceAssociationStatusInfo) *DescribeInstanceAssociationsStatusOutput {
s.InstanceAssociationStatusInfos = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeInstanceAssociationsStatusOutput) SetNextToken(v string) *DescribeInstanceAssociationsStatusOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceInformationRequest
type DescribeInstanceInformationInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// One or more filters. Use a filter to return a more specific list of instances.
Filters []*InstanceInformationStringFilter `locationNameList:"InstanceInformationStringFilter" type:"list"`
2016-12-02 15:37:53 +01:00
// One or more filters. Use a filter to return a more specific list of instances.
InstanceInformationFilterList []*InstanceInformationFilter `locationNameList:"InstanceInformationFilter" type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"5" type:"integer"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeInstanceInformationInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInstanceInformationInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeInstanceInformationInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeInstanceInformationInput"}
if s.MaxResults != nil && *s.MaxResults < 5 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 5))
2016-12-02 15:37:53 +01:00
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
2016-12-02 15:37:53 +01:00
}
}
if s.InstanceInformationFilterList != nil {
for i, v := range s.InstanceInformationFilterList {
2016-12-02 15:37:53 +01:00
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "InstanceInformationFilterList", i), err.(request.ErrInvalidParams))
2016-12-02 15:37:53 +01:00
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeInstanceInformationInput) SetFilters(v []*InstanceInformationStringFilter) *DescribeInstanceInformationInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetInstanceInformationFilterList sets the InstanceInformationFilterList field's value.
func (s *DescribeInstanceInformationInput) SetInstanceInformationFilterList(v []*InstanceInformationFilter) *DescribeInstanceInformationInput {
s.InstanceInformationFilterList = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeInstanceInformationInput) SetMaxResults(v int64) *DescribeInstanceInformationInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeInstanceInformationInput) SetNextToken(v string) *DescribeInstanceInformationInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceInformationResult
type DescribeInstanceInformationOutput struct {
_ struct{} `type:"structure"`
// The instance information list.
InstanceInformationList []*InstanceInformation `locationNameList:"InstanceInformation" type:"list"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeInstanceInformationOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInstanceInformationOutput) GoString() string {
return s.String()
}
// SetInstanceInformationList sets the InstanceInformationList field's value.
func (s *DescribeInstanceInformationOutput) SetInstanceInformationList(v []*InstanceInformation) *DescribeInstanceInformationOutput {
s.InstanceInformationList = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeInstanceInformationOutput) SetNextToken(v string) *DescribeInstanceInformationOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStatesForPatchGroupRequest
type DescribeInstancePatchStatesForPatchGroupInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Each entry in the array is a structure containing:
2016-12-02 15:37:53 +01:00
//
// Key (string 1 ≤ length ≤ 200)
2016-12-02 15:37:53 +01:00
//
// Values (array containing a single string)
//
// Type (string “Equal”, “NotEqual”, “LessThan”, “GreaterThan”)
Filters []*InstancePatchStateFilter `type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of patches to return (per page).
MaxResults *int64 `min:"10" type:"integer"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The name of the patch group for which the patch state information should
// be retrieved.
//
// PatchGroup is a required field
PatchGroup *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeInstancePatchStatesForPatchGroupInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInstancePatchStatesForPatchGroupInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeInstancePatchStatesForPatchGroupInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeInstancePatchStatesForPatchGroupInput"}
if s.MaxResults != nil && *s.MaxResults < 10 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 10))
2016-12-02 15:37:53 +01:00
}
if s.PatchGroup == nil {
invalidParams.Add(request.NewErrParamRequired("PatchGroup"))
2016-12-02 15:37:53 +01:00
}
if s.PatchGroup != nil && len(*s.PatchGroup) < 1 {
invalidParams.Add(request.NewErrParamMinLen("PatchGroup", 1))
2016-12-02 15:37:53 +01:00
}
if s.Filters != nil {
for i, v := range s.Filters {
2016-12-02 15:37:53 +01:00
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-12-02 15:37:53 +01:00
}
// SetFilters sets the Filters field's value.
func (s *DescribeInstancePatchStatesForPatchGroupInput) SetFilters(v []*InstancePatchStateFilter) *DescribeInstancePatchStatesForPatchGroupInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeInstancePatchStatesForPatchGroupInput) SetMaxResults(v int64) *DescribeInstancePatchStatesForPatchGroupInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeInstancePatchStatesForPatchGroupInput) SetNextToken(v string) *DescribeInstancePatchStatesForPatchGroupInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPatchGroup sets the PatchGroup field's value.
func (s *DescribeInstancePatchStatesForPatchGroupInput) SetPatchGroup(v string) *DescribeInstancePatchStatesForPatchGroupInput {
s.PatchGroup = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStatesForPatchGroupResult
type DescribeInstancePatchStatesForPatchGroupOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The high-level patch state for the requested instances.
InstancePatchStates []*InstancePatchState `min:"1" type:"list"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeInstancePatchStatesForPatchGroupOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInstancePatchStatesForPatchGroupOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetInstancePatchStates sets the InstancePatchStates field's value.
func (s *DescribeInstancePatchStatesForPatchGroupOutput) SetInstancePatchStates(v []*InstancePatchState) *DescribeInstancePatchStatesForPatchGroupOutput {
s.InstancePatchStates = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeInstancePatchStatesForPatchGroupOutput) SetNextToken(v string) *DescribeInstancePatchStatesForPatchGroupOutput {
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStatesRequest
type DescribeInstancePatchStatesInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the instance whose patch state information should be retrieved.
2016-12-02 15:37:53 +01:00
//
// InstanceIds is a required field
InstanceIds []*string `type:"list" required:"true"`
2016-12-02 15:37:53 +01:00
// The maximum number of instances to return (per page).
MaxResults *int64 `min:"10" type:"integer"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeInstancePatchStatesInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInstancePatchStatesInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeInstancePatchStatesInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeInstancePatchStatesInput"}
if s.InstanceIds == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceIds"))
2016-12-02 15:37:53 +01:00
}
if s.MaxResults != nil && *s.MaxResults < 10 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 10))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetInstanceIds sets the InstanceIds field's value.
func (s *DescribeInstancePatchStatesInput) SetInstanceIds(v []*string) *DescribeInstancePatchStatesInput {
s.InstanceIds = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeInstancePatchStatesInput) SetMaxResults(v int64) *DescribeInstancePatchStatesInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeInstancePatchStatesInput) SetNextToken(v string) *DescribeInstancePatchStatesInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStatesResult
type DescribeInstancePatchStatesOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The high-level patch state for the requested instances.
InstancePatchStates []*InstancePatchState `type:"list"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeInstancePatchStatesOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInstancePatchStatesOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetInstancePatchStates sets the InstancePatchStates field's value.
func (s *DescribeInstancePatchStatesOutput) SetInstancePatchStates(v []*InstancePatchState) *DescribeInstancePatchStatesOutput {
s.InstancePatchStates = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeInstancePatchStatesOutput) SetNextToken(v string) *DescribeInstancePatchStatesOutput {
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchesRequest
type DescribeInstancePatchesInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Each entry in the array is a structure containing:
2016-12-02 15:37:53 +01:00
//
// Key (string, 1 ≤ length ≤ 128)
2016-12-02 15:37:53 +01:00
//
// Values (array of strings 1 ≤ length ≤ 256)
Filters []*PatchOrchestratorFilter `type:"list"`
2016-12-02 15:37:53 +01:00
// The ID of the instance whose patch state information should be retrieved.
2016-12-02 15:37:53 +01:00
//
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The maximum number of patches to return (per page).
MaxResults *int64 `min:"10" type:"integer"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeInstancePatchesInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInstancePatchesInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeInstancePatchesInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeInstancePatchesInput"}
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
2016-12-02 15:37:53 +01:00
}
if s.MaxResults != nil && *s.MaxResults < 10 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 10))
2016-12-02 15:37:53 +01:00
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeInstancePatchesInput) SetFilters(v []*PatchOrchestratorFilter) *DescribeInstancePatchesInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *DescribeInstancePatchesInput) SetInstanceId(v string) *DescribeInstancePatchesInput {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeInstancePatchesInput) SetMaxResults(v int64) *DescribeInstancePatchesInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeInstancePatchesInput) SetNextToken(v string) *DescribeInstancePatchesInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchesResult
type DescribeInstancePatchesOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
// Each entry in the array is a structure containing:
//
// Title (string)
//
// KBId (string)
//
// Classification (string)
//
// Severity (string)
//
// State (string “INSTALLED”, “INSTALLED_OTHER”, “MISSING”, “NOT_APPLICABLE”,
// “FAILED”)
//
// InstalledTime (DateTime)
//
// InstalledBy (string)
Patches []*PatchComplianceData `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeInstancePatchesOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInstancePatchesOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeInstancePatchesOutput) SetNextToken(v string) *DescribeInstancePatchesOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPatches sets the Patches field's value.
func (s *DescribeInstancePatchesOutput) SetPatches(v []*PatchComplianceData) *DescribeInstancePatchesOutput {
s.Patches = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionTaskInvocationsRequest
type DescribeMaintenanceWindowExecutionTaskInvocationsInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Optional filters used to scope down the returned task invocations. The supported
// filter key is STATUS with the corresponding values PENDING, IN_PROGRESS,
// SUCCESS, FAILED, TIMED_OUT, CANCELLING, and CANCELLED.
Filters []*MaintenanceWindowFilter `type:"list"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"10" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
// The ID of the specific task in the Maintenance Window task that should be
// retrieved.
//
// TaskId is a required field
TaskId *string `min:"36" type:"string" required:"true"`
// The ID of the Maintenance Window execution the task is part of.
2016-12-02 15:37:53 +01:00
//
// WindowExecutionId is a required field
WindowExecutionId *string `min:"36" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeMaintenanceWindowExecutionTaskInvocationsInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowExecutionTaskInvocationsInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeMaintenanceWindowExecutionTaskInvocationsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeMaintenanceWindowExecutionTaskInvocationsInput"}
if s.MaxResults != nil && *s.MaxResults < 10 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 10))
}
if s.TaskId == nil {
invalidParams.Add(request.NewErrParamRequired("TaskId"))
}
if s.TaskId != nil && len(*s.TaskId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("TaskId", 36))
}
if s.WindowExecutionId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowExecutionId"))
}
if s.WindowExecutionId != nil && len(*s.WindowExecutionId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("WindowExecutionId", 36))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeMaintenanceWindowExecutionTaskInvocationsInput) SetFilters(v []*MaintenanceWindowFilter) *DescribeMaintenanceWindowExecutionTaskInvocationsInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeMaintenanceWindowExecutionTaskInvocationsInput) SetMaxResults(v int64) *DescribeMaintenanceWindowExecutionTaskInvocationsInput {
s.MaxResults = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowExecutionTaskInvocationsInput) SetNextToken(v string) *DescribeMaintenanceWindowExecutionTaskInvocationsInput {
s.NextToken = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetTaskId sets the TaskId field's value.
func (s *DescribeMaintenanceWindowExecutionTaskInvocationsInput) SetTaskId(v string) *DescribeMaintenanceWindowExecutionTaskInvocationsInput {
s.TaskId = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetWindowExecutionId sets the WindowExecutionId field's value.
func (s *DescribeMaintenanceWindowExecutionTaskInvocationsInput) SetWindowExecutionId(v string) *DescribeMaintenanceWindowExecutionTaskInvocationsInput {
s.WindowExecutionId = &v
return s
}
2016-12-02 15:37:53 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionTaskInvocationsResult
type DescribeMaintenanceWindowExecutionTaskInvocationsOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
// Information about the task invocation results per invocation.
WindowExecutionTaskInvocationIdentities []*MaintenanceWindowExecutionTaskInvocationIdentity `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeMaintenanceWindowExecutionTaskInvocationsOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowExecutionTaskInvocationsOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowExecutionTaskInvocationsOutput) SetNextToken(v string) *DescribeMaintenanceWindowExecutionTaskInvocationsOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowExecutionTaskInvocationIdentities sets the WindowExecutionTaskInvocationIdentities field's value.
func (s *DescribeMaintenanceWindowExecutionTaskInvocationsOutput) SetWindowExecutionTaskInvocationIdentities(v []*MaintenanceWindowExecutionTaskInvocationIdentity) *DescribeMaintenanceWindowExecutionTaskInvocationsOutput {
s.WindowExecutionTaskInvocationIdentities = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionTasksRequest
type DescribeMaintenanceWindowExecutionTasksInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Optional filters used to scope down the returned tasks. The supported filter
// key is STATUS with the corresponding values PENDING, IN_PROGRESS, SUCCESS,
// FAILED, TIMED_OUT, CANCELLING, and CANCELLED.
Filters []*MaintenanceWindowFilter `type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"10" type:"integer"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The ID of the Maintenance Window execution whose task executions should be
// retrieved.
2016-12-02 15:37:53 +01:00
//
// WindowExecutionId is a required field
WindowExecutionId *string `min:"36" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeMaintenanceWindowExecutionTasksInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowExecutionTasksInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeMaintenanceWindowExecutionTasksInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeMaintenanceWindowExecutionTasksInput"}
if s.MaxResults != nil && *s.MaxResults < 10 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 10))
}
if s.WindowExecutionId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowExecutionId"))
}
if s.WindowExecutionId != nil && len(*s.WindowExecutionId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("WindowExecutionId", 36))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeMaintenanceWindowExecutionTasksInput) SetFilters(v []*MaintenanceWindowFilter) *DescribeMaintenanceWindowExecutionTasksInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeMaintenanceWindowExecutionTasksInput) SetMaxResults(v int64) *DescribeMaintenanceWindowExecutionTasksInput {
s.MaxResults = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowExecutionTasksInput) SetNextToken(v string) *DescribeMaintenanceWindowExecutionTasksInput {
s.NextToken = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetWindowExecutionId sets the WindowExecutionId field's value.
func (s *DescribeMaintenanceWindowExecutionTasksInput) SetWindowExecutionId(v string) *DescribeMaintenanceWindowExecutionTasksInput {
s.WindowExecutionId = &v
return s
2016-12-02 15:37:53 +01:00
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionTasksResult
type DescribeMaintenanceWindowExecutionTasksOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
// Information about the task executions.
WindowExecutionTaskIdentities []*MaintenanceWindowExecutionTaskIdentity `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeMaintenanceWindowExecutionTasksOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowExecutionTasksOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowExecutionTasksOutput) SetNextToken(v string) *DescribeMaintenanceWindowExecutionTasksOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowExecutionTaskIdentities sets the WindowExecutionTaskIdentities field's value.
func (s *DescribeMaintenanceWindowExecutionTasksOutput) SetWindowExecutionTaskIdentities(v []*MaintenanceWindowExecutionTaskIdentity) *DescribeMaintenanceWindowExecutionTasksOutput {
s.WindowExecutionTaskIdentities = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionsRequest
type DescribeMaintenanceWindowExecutionsInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Each entry in the array is a structure containing:
2016-12-02 15:37:53 +01:00
//
// Key (string, 1 ≤ length ≤ 128)
//
// Values (array of strings 1 ≤ length ≤ 256)
//
// The supported Keys are ExecutedBefore and ExecutedAfter with the value being
// a date/time string such as 2016-11-04T05:00:00Z.
Filters []*MaintenanceWindowFilter `type:"list"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"10" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
// The ID of the Maintenance Window whose executions should be retrieved.
//
// WindowId is a required field
WindowId *string `min:"20" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeMaintenanceWindowExecutionsInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowExecutionsInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeMaintenanceWindowExecutionsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeMaintenanceWindowExecutionsInput"}
if s.MaxResults != nil && *s.MaxResults < 10 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 10))
2016-12-02 15:37:53 +01:00
}
if s.WindowId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowId"))
}
if s.WindowId != nil && len(*s.WindowId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("WindowId", 20))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeMaintenanceWindowExecutionsInput) SetFilters(v []*MaintenanceWindowFilter) *DescribeMaintenanceWindowExecutionsInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeMaintenanceWindowExecutionsInput) SetMaxResults(v int64) *DescribeMaintenanceWindowExecutionsInput {
s.MaxResults = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowExecutionsInput) SetNextToken(v string) *DescribeMaintenanceWindowExecutionsInput {
s.NextToken = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetWindowId sets the WindowId field's value.
func (s *DescribeMaintenanceWindowExecutionsInput) SetWindowId(v string) *DescribeMaintenanceWindowExecutionsInput {
s.WindowId = &v
return s
2016-12-02 15:37:53 +01:00
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionsResult
type DescribeMaintenanceWindowExecutionsOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
// Information about the Maintenance Windows execution.
WindowExecutions []*MaintenanceWindowExecution `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeMaintenanceWindowExecutionsOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowExecutionsOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowExecutionsOutput) SetNextToken(v string) *DescribeMaintenanceWindowExecutionsOutput {
s.NextToken = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetWindowExecutions sets the WindowExecutions field's value.
func (s *DescribeMaintenanceWindowExecutionsOutput) SetWindowExecutions(v []*MaintenanceWindowExecution) *DescribeMaintenanceWindowExecutionsOutput {
s.WindowExecutions = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowTargetsRequest
type DescribeMaintenanceWindowTargetsInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Optional filters that can be used to narrow down the scope of the returned
// window targets. The supported filter keys are Type, WindowTargetId and OwnerInformation.
Filters []*MaintenanceWindowFilter `type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"10" type:"integer"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The ID of the Maintenance Window whose targets should be retrieved.
2016-12-02 15:37:53 +01:00
//
// WindowId is a required field
WindowId *string `min:"20" type:"string" required:"true"`
}
// String returns the string representation
func (s DescribeMaintenanceWindowTargetsInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowTargetsInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeMaintenanceWindowTargetsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeMaintenanceWindowTargetsInput"}
if s.MaxResults != nil && *s.MaxResults < 10 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 10))
}
2016-12-02 15:37:53 +01:00
if s.WindowId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowId"))
}
if s.WindowId != nil && len(*s.WindowId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("WindowId", 20))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeMaintenanceWindowTargetsInput) SetFilters(v []*MaintenanceWindowFilter) *DescribeMaintenanceWindowTargetsInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeMaintenanceWindowTargetsInput) SetMaxResults(v int64) *DescribeMaintenanceWindowTargetsInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowTargetsInput) SetNextToken(v string) *DescribeMaintenanceWindowTargetsInput {
s.NextToken = &v
return s
}
// SetWindowId sets the WindowId field's value.
func (s *DescribeMaintenanceWindowTargetsInput) SetWindowId(v string) *DescribeMaintenanceWindowTargetsInput {
s.WindowId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowTargetsResult
type DescribeMaintenanceWindowTargetsOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
// Information about the targets in the Maintenance Window.
Targets []*MaintenanceWindowTarget `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeMaintenanceWindowTargetsOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowTargetsOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowTargetsOutput) SetNextToken(v string) *DescribeMaintenanceWindowTargetsOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetTargets sets the Targets field's value.
func (s *DescribeMaintenanceWindowTargetsOutput) SetTargets(v []*MaintenanceWindowTarget) *DescribeMaintenanceWindowTargetsOutput {
s.Targets = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowTasksRequest
type DescribeMaintenanceWindowTasksInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Optional filters used to narrow down the scope of the returned tasks. The
// supported filter keys are WindowTaskId, TaskArn, Priority, and TaskType.
Filters []*MaintenanceWindowFilter `type:"list"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"10" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
// The ID of the Maintenance Window whose tasks should be retrieved.
2016-12-02 15:37:53 +01:00
//
// WindowId is a required field
WindowId *string `min:"20" type:"string" required:"true"`
}
// String returns the string representation
func (s DescribeMaintenanceWindowTasksInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowTasksInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeMaintenanceWindowTasksInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeMaintenanceWindowTasksInput"}
if s.MaxResults != nil && *s.MaxResults < 10 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 10))
}
2016-12-02 15:37:53 +01:00
if s.WindowId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowId"))
}
if s.WindowId != nil && len(*s.WindowId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("WindowId", 20))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeMaintenanceWindowTasksInput) SetFilters(v []*MaintenanceWindowFilter) *DescribeMaintenanceWindowTasksInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeMaintenanceWindowTasksInput) SetMaxResults(v int64) *DescribeMaintenanceWindowTasksInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowTasksInput) SetNextToken(v string) *DescribeMaintenanceWindowTasksInput {
s.NextToken = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetWindowId sets the WindowId field's value.
func (s *DescribeMaintenanceWindowTasksInput) SetWindowId(v string) *DescribeMaintenanceWindowTasksInput {
2016-12-02 15:37:53 +01:00
s.WindowId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowTasksResult
type DescribeMaintenanceWindowTasksOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
// Information about the tasks in the Maintenance Window.
Tasks []*MaintenanceWindowTask `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeMaintenanceWindowTasksOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowTasksOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowTasksOutput) SetNextToken(v string) *DescribeMaintenanceWindowTasksOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetTasks sets the Tasks field's value.
func (s *DescribeMaintenanceWindowTasksOutput) SetTasks(v []*MaintenanceWindowTask) *DescribeMaintenanceWindowTasksOutput {
s.Tasks = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowsRequest
type DescribeMaintenanceWindowsInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Optional filters used to narrow down the scope of the returned Maintenance
// Windows. Supported filter keys are Name and Enabled.
Filters []*MaintenanceWindowFilter `type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"10" type:"integer"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
2016-12-02 15:37:53 +01:00
NextToken *string `type:"string"`
}
// String returns the string representation
func (s DescribeMaintenanceWindowsInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowsInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeMaintenanceWindowsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeMaintenanceWindowsInput"}
if s.MaxResults != nil && *s.MaxResults < 10 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 10))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeMaintenanceWindowsInput) SetFilters(v []*MaintenanceWindowFilter) *DescribeMaintenanceWindowsInput {
2016-12-02 15:37:53 +01:00
s.Filters = v
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeMaintenanceWindowsInput) SetMaxResults(v int64) *DescribeMaintenanceWindowsInput {
2016-12-02 15:37:53 +01:00
s.MaxResults = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowsInput) SetNextToken(v string) *DescribeMaintenanceWindowsInput {
2016-12-02 15:37:53 +01:00
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowsResult
type DescribeMaintenanceWindowsOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
2016-12-02 15:37:53 +01:00
NextToken *string `type:"string"`
// Information about the Maintenance Windows.
WindowIdentities []*MaintenanceWindowIdentity `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeMaintenanceWindowsOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeMaintenanceWindowsOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeMaintenanceWindowsOutput) SetNextToken(v string) *DescribeMaintenanceWindowsOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowIdentities sets the WindowIdentities field's value.
func (s *DescribeMaintenanceWindowsOutput) SetWindowIdentities(v []*MaintenanceWindowIdentity) *DescribeMaintenanceWindowsOutput {
s.WindowIdentities = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeParametersRequest
type DescribeParametersInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// One or more filters. Use a filter to return a more specific list of results.
Filters []*ParametersFilter `type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"1" type:"integer"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeParametersInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeParametersInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeParametersInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribeParametersInput"}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribeParametersInput) SetFilters(v []*ParametersFilter) *DescribeParametersInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribeParametersInput) SetMaxResults(v int64) *DescribeParametersInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeParametersInput) SetNextToken(v string) *DescribeParametersInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeParametersResult
type DescribeParametersOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
// Parameters returned by the request.
Parameters []*ParameterMetadata `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribeParametersOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeParametersOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *DescribeParametersOutput) SetNextToken(v string) *DescribeParametersOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetParameters sets the Parameters field's value.
func (s *DescribeParametersOutput) SetParameters(v []*ParameterMetadata) *DescribeParametersOutput {
s.Parameters = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchBaselinesRequest
type DescribePatchBaselinesInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Each element in the array is a structure containing:
//
// Key: (string, “NAME_PREFIX” or “OWNER”)
//
// Value: (array of strings, exactly 1 entry, 1 ≤ length ≤ 255)
Filters []*PatchOrchestratorFilter `type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of patch baselines to return (per page).
2016-12-02 15:37:53 +01:00
MaxResults *int64 `min:"1" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
}
// String returns the string representation
func (s DescribePatchBaselinesInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribePatchBaselinesInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribePatchBaselinesInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribePatchBaselinesInput"}
2016-12-02 15:37:53 +01:00
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *DescribePatchBaselinesInput) SetFilters(v []*PatchOrchestratorFilter) *DescribePatchBaselinesInput {
2016-12-02 15:37:53 +01:00
s.Filters = v
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribePatchBaselinesInput) SetMaxResults(v int64) *DescribePatchBaselinesInput {
2016-12-02 15:37:53 +01:00
s.MaxResults = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribePatchBaselinesInput) SetNextToken(v string) *DescribePatchBaselinesInput {
2016-12-02 15:37:53 +01:00
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchBaselinesResult
type DescribePatchBaselinesOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// An array of PatchBaselineIdentity elements.
BaselineIdentities []*PatchBaselineIdentity `type:"list"`
2016-12-02 15:37:53 +01:00
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
}
// String returns the string representation
func (s DescribePatchBaselinesOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribePatchBaselinesOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetBaselineIdentities sets the BaselineIdentities field's value.
func (s *DescribePatchBaselinesOutput) SetBaselineIdentities(v []*PatchBaselineIdentity) *DescribePatchBaselinesOutput {
s.BaselineIdentities = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribePatchBaselinesOutput) SetNextToken(v string) *DescribePatchBaselinesOutput {
2016-12-02 15:37:53 +01:00
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupStateRequest
type DescribePatchGroupStateInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The name of the patch group whose patch snapshot should be retrieved.
2016-12-02 15:37:53 +01:00
//
// PatchGroup is a required field
PatchGroup *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribePatchGroupStateInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribePatchGroupStateInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribePatchGroupStateInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribePatchGroupStateInput"}
if s.PatchGroup == nil {
invalidParams.Add(request.NewErrParamRequired("PatchGroup"))
}
if s.PatchGroup != nil && len(*s.PatchGroup) < 1 {
invalidParams.Add(request.NewErrParamMinLen("PatchGroup", 1))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetPatchGroup sets the PatchGroup field's value.
func (s *DescribePatchGroupStateInput) SetPatchGroup(v string) *DescribePatchGroupStateInput {
s.PatchGroup = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupStateResult
type DescribePatchGroupStateOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The number of instances in the patch group.
Instances *int64 `type:"integer"`
2016-12-02 15:37:53 +01:00
// The number of instances with patches from the patch baseline that failed
// to install.
InstancesWithFailedPatches *int64 `type:"integer"`
2016-12-02 15:37:53 +01:00
// The number of instances with patches installed that arent defined in the
// patch baseline.
InstancesWithInstalledOtherPatches *int64 `type:"integer"`
2016-12-02 15:37:53 +01:00
// The number of instances with installed patches.
InstancesWithInstalledPatches *int64 `type:"integer"`
2016-12-02 15:37:53 +01:00
// The number of instances with missing patches from the patch baseline.
InstancesWithMissingPatches *int64 `type:"integer"`
2016-12-02 15:37:53 +01:00
// The number of instances with patches that arent applicable.
InstancesWithNotApplicablePatches *int64 `type:"integer"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DescribePatchGroupStateOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribePatchGroupStateOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetInstances sets the Instances field's value.
func (s *DescribePatchGroupStateOutput) SetInstances(v int64) *DescribePatchGroupStateOutput {
s.Instances = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetInstancesWithFailedPatches sets the InstancesWithFailedPatches field's value.
func (s *DescribePatchGroupStateOutput) SetInstancesWithFailedPatches(v int64) *DescribePatchGroupStateOutput {
s.InstancesWithFailedPatches = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetInstancesWithInstalledOtherPatches sets the InstancesWithInstalledOtherPatches field's value.
func (s *DescribePatchGroupStateOutput) SetInstancesWithInstalledOtherPatches(v int64) *DescribePatchGroupStateOutput {
s.InstancesWithInstalledOtherPatches = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetInstancesWithInstalledPatches sets the InstancesWithInstalledPatches field's value.
func (s *DescribePatchGroupStateOutput) SetInstancesWithInstalledPatches(v int64) *DescribePatchGroupStateOutput {
s.InstancesWithInstalledPatches = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetInstancesWithMissingPatches sets the InstancesWithMissingPatches field's value.
func (s *DescribePatchGroupStateOutput) SetInstancesWithMissingPatches(v int64) *DescribePatchGroupStateOutput {
s.InstancesWithMissingPatches = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetInstancesWithNotApplicablePatches sets the InstancesWithNotApplicablePatches field's value.
func (s *DescribePatchGroupStateOutput) SetInstancesWithNotApplicablePatches(v int64) *DescribePatchGroupStateOutput {
s.InstancesWithNotApplicablePatches = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupsRequest
type DescribePatchGroupsInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The maximum number of patch groups to return (per page).
2016-12-02 15:37:53 +01:00
MaxResults *int64 `min:"1" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
}
// String returns the string representation
func (s DescribePatchGroupsInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribePatchGroupsInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribePatchGroupsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DescribePatchGroupsInput"}
2016-12-02 15:37:53 +01:00
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetMaxResults sets the MaxResults field's value.
func (s *DescribePatchGroupsInput) SetMaxResults(v int64) *DescribePatchGroupsInput {
2016-12-02 15:37:53 +01:00
s.MaxResults = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribePatchGroupsInput) SetNextToken(v string) *DescribePatchGroupsInput {
2016-12-02 15:37:53 +01:00
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupsResult
type DescribePatchGroupsOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Each entry in the array contains:
//
// PatchGroup: string (1 ≤ length ≤ 256, Regex: ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$)
//
// PatchBaselineIdentity: A PatchBaselineIdentity element.
Mappings []*PatchGroupPatchBaselineMapping `type:"list"`
2016-12-02 15:37:53 +01:00
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
}
// String returns the string representation
func (s DescribePatchGroupsOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribePatchGroupsOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetMappings sets the Mappings field's value.
func (s *DescribePatchGroupsOutput) SetMappings(v []*PatchGroupPatchBaselineMapping) *DescribePatchGroupsOutput {
s.Mappings = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *DescribePatchGroupsOutput) SetNextToken(v string) *DescribePatchGroupsOutput {
2016-12-02 15:37:53 +01:00
s.NextToken = &v
return s
}
// A default version of a document.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentDefaultVersionDescription
type DocumentDefaultVersionDescription struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The default version of the document.
DefaultVersion *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The name of the document.
Name *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DocumentDefaultVersionDescription) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DocumentDefaultVersionDescription) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetDefaultVersion sets the DefaultVersion field's value.
func (s *DocumentDefaultVersionDescription) SetDefaultVersion(v string) *DocumentDefaultVersionDescription {
s.DefaultVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *DocumentDefaultVersionDescription) SetName(v string) *DocumentDefaultVersionDescription {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// Describes an SSM document.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentDescription
type DocumentDescription struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The date when the SSM document was created.
CreatedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// The default version.
DefaultVersion *string `type:"string"`
// A description of the document.
Description *string `type:"string"`
// The type of document.
DocumentType *string `type:"string" enum:"DocumentType"`
// The document version.
DocumentVersion *string `type:"string"`
// The Sha256 or Sha1 hash created by the system when the document was created.
//
// Sha1 hashes have been deprecated.
Hash *string `type:"string"`
// Sha256 or Sha1.
//
// Sha1 hashes have been deprecated.
HashType *string `type:"string" enum:"DocumentHashType"`
// The latest version of the document.
LatestVersion *string `type:"string"`
// The name of the SSM document.
Name *string `type:"string"`
// The AWS user account of the person who created the document.
Owner *string `type:"string"`
// A description of the parameters for a document.
Parameters []*DocumentParameter `locationNameList:"DocumentParameter" type:"list"`
// The list of OS platforms compatible with this SSM document.
PlatformTypes []*string `locationNameList:"PlatformType" type:"list"`
// The schema version.
SchemaVersion *string `type:"string"`
// The SHA1 hash of the document, which you can use for verification purposes.
Sha1 *string `type:"string"`
// The status of the SSM document.
Status *string `type:"string" enum:"DocumentStatus"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DocumentDescription) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DocumentDescription) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetCreatedDate sets the CreatedDate field's value.
func (s *DocumentDescription) SetCreatedDate(v time.Time) *DocumentDescription {
s.CreatedDate = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDefaultVersion sets the DefaultVersion field's value.
func (s *DocumentDescription) SetDefaultVersion(v string) *DocumentDescription {
s.DefaultVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDescription sets the Description field's value.
func (s *DocumentDescription) SetDescription(v string) *DocumentDescription {
s.Description = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetDocumentType sets the DocumentType field's value.
func (s *DocumentDescription) SetDocumentType(v string) *DocumentDescription {
s.DocumentType = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *DocumentDescription) SetDocumentVersion(v string) *DocumentDescription {
s.DocumentVersion = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetHash sets the Hash field's value.
func (s *DocumentDescription) SetHash(v string) *DocumentDescription {
s.Hash = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetHashType sets the HashType field's value.
func (s *DocumentDescription) SetHashType(v string) *DocumentDescription {
s.HashType = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetLatestVersion sets the LatestVersion field's value.
func (s *DocumentDescription) SetLatestVersion(v string) *DocumentDescription {
s.LatestVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *DocumentDescription) SetName(v string) *DocumentDescription {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetOwner sets the Owner field's value.
func (s *DocumentDescription) SetOwner(v string) *DocumentDescription {
s.Owner = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetParameters sets the Parameters field's value.
func (s *DocumentDescription) SetParameters(v []*DocumentParameter) *DocumentDescription {
s.Parameters = v
return s
2016-12-02 15:37:53 +01:00
}
// SetPlatformTypes sets the PlatformTypes field's value.
func (s *DocumentDescription) SetPlatformTypes(v []*string) *DocumentDescription {
s.PlatformTypes = v
return s
2016-12-02 15:37:53 +01:00
}
// SetSchemaVersion sets the SchemaVersion field's value.
func (s *DocumentDescription) SetSchemaVersion(v string) *DocumentDescription {
s.SchemaVersion = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetSha1 sets the Sha1 field's value.
func (s *DocumentDescription) SetSha1(v string) *DocumentDescription {
s.Sha1 = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetStatus sets the Status field's value.
func (s *DocumentDescription) SetStatus(v string) *DocumentDescription {
s.Status = &v
2016-12-02 15:37:53 +01:00
return s
}
// Describes a filter.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentFilter
type DocumentFilter struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The name of the filter.
2016-12-02 15:37:53 +01:00
//
// Key is a required field
Key *string `locationName:"key" type:"string" required:"true" enum:"DocumentFilterKey"`
2016-12-02 15:37:53 +01:00
// The value of the filter.
2016-12-02 15:37:53 +01:00
//
// Value is a required field
Value *string `locationName:"value" min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DocumentFilter) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DocumentFilter) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DocumentFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DocumentFilter"}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
2016-12-02 15:37:53 +01:00
}
if s.Value == nil {
invalidParams.Add(request.NewErrParamRequired("Value"))
2016-12-02 15:37:53 +01:00
}
if s.Value != nil && len(*s.Value) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Value", 1))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
2016-12-02 15:37:53 +01:00
}
return nil
}
// SetKey sets the Key field's value.
func (s *DocumentFilter) SetKey(v string) *DocumentFilter {
s.Key = &v
return s
}
// SetValue sets the Value field's value.
func (s *DocumentFilter) SetValue(v string) *DocumentFilter {
s.Value = &v
return s
}
// Describes the name of an SSM document.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentIdentifier
type DocumentIdentifier struct {
_ struct{} `type:"structure"`
// The document type.
DocumentType *string `type:"string" enum:"DocumentType"`
// The document version.
DocumentVersion *string `type:"string"`
// The name of the SSM document.
Name *string `type:"string"`
// The AWS user account of the person who created the document.
Owner *string `type:"string"`
// The operating system platform.
PlatformTypes []*string `locationNameList:"PlatformType" type:"list"`
// The schema version.
SchemaVersion *string `type:"string"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s DocumentIdentifier) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s DocumentIdentifier) GoString() string {
return s.String()
}
// SetDocumentType sets the DocumentType field's value.
func (s *DocumentIdentifier) SetDocumentType(v string) *DocumentIdentifier {
s.DocumentType = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *DocumentIdentifier) SetDocumentVersion(v string) *DocumentIdentifier {
s.DocumentVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *DocumentIdentifier) SetName(v string) *DocumentIdentifier {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetOwner sets the Owner field's value.
func (s *DocumentIdentifier) SetOwner(v string) *DocumentIdentifier {
s.Owner = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPlatformTypes sets the PlatformTypes field's value.
func (s *DocumentIdentifier) SetPlatformTypes(v []*string) *DocumentIdentifier {
s.PlatformTypes = v
2016-12-02 15:37:53 +01:00
return s
}
// SetSchemaVersion sets the SchemaVersion field's value.
func (s *DocumentIdentifier) SetSchemaVersion(v string) *DocumentIdentifier {
s.SchemaVersion = &v
return s
}
// Parameters specified in the SSM document that execute on the server when
// the command is run.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentParameter
type DocumentParameter struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// If specified, the default values for the parameters. Parameters without a
// default value are required. Parameters with a default value are optional.
DefaultValue *string `type:"string"`
2016-12-02 15:37:53 +01:00
// A description of what the parameter does, how to use it, the default value,
// and whether or not the parameter is optional.
Description *string `type:"string"`
// The name of the parameter.
Name *string `type:"string"`
// The type of parameter. The type can be either “String” or “StringList”.
Type *string `type:"string" enum:"DocumentParameterType"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DocumentParameter) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DocumentParameter) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetDefaultValue sets the DefaultValue field's value.
func (s *DocumentParameter) SetDefaultValue(v string) *DocumentParameter {
s.DefaultValue = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDescription sets the Description field's value.
func (s *DocumentParameter) SetDescription(v string) *DocumentParameter {
s.Description = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *DocumentParameter) SetName(v string) *DocumentParameter {
s.Name = &v
return s
}
// SetType sets the Type field's value.
func (s *DocumentParameter) SetType(v string) *DocumentParameter {
s.Type = &v
return s
}
// Version information about the document.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentVersionInfo
type DocumentVersionInfo struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The date the document was created.
CreatedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// The document version.
DocumentVersion *string `type:"string"`
2016-12-02 15:37:53 +01:00
// An identifier for the default version of the document.
IsDefaultVersion *bool `type:"boolean"`
2016-12-02 15:37:53 +01:00
// The document name.
Name *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s DocumentVersionInfo) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DocumentVersionInfo) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetCreatedDate sets the CreatedDate field's value.
func (s *DocumentVersionInfo) SetCreatedDate(v time.Time) *DocumentVersionInfo {
s.CreatedDate = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *DocumentVersionInfo) SetDocumentVersion(v string) *DocumentVersionInfo {
s.DocumentVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetIsDefaultVersion sets the IsDefaultVersion field's value.
func (s *DocumentVersionInfo) SetIsDefaultVersion(v bool) *DocumentVersionInfo {
s.IsDefaultVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *DocumentVersionInfo) SetName(v string) *DocumentVersionInfo {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// The EffectivePatch structure defines metadata about a patch along with the
// approval state of the patch in a particular patch baseline. The approval
// state includes information about whether the patch is currently approved,
// due to be approved by a rule, explicitly approved, or explicitly rejected
// and the date the patch was or will be approved.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/EffectivePatch
type EffectivePatch struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Provides metadata for a patch, including information such as the KB ID, severity,
// classification and a URL for where more information can be obtained about
// the patch.
Patch *Patch `type:"structure"`
2016-12-02 15:37:53 +01:00
// The status of the patch in a patch baseline. This includes information about
// whether the patch is currently approved, due to be approved by a rule, explicitly
// approved, or explicitly rejected and the date the patch was or will be approved.
PatchStatus *PatchStatus `type:"structure"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s EffectivePatch) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EffectivePatch) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetPatch sets the Patch field's value.
func (s *EffectivePatch) SetPatch(v *Patch) *EffectivePatch {
s.Patch = v
2016-12-02 15:37:53 +01:00
return s
}
// SetPatchStatus sets the PatchStatus field's value.
func (s *EffectivePatch) SetPatchStatus(v *PatchStatus) *EffectivePatch {
s.PatchStatus = v
2016-12-02 15:37:53 +01:00
return s
}
// Describes a failed association.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/FailedCreateAssociation
type FailedCreateAssociation struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The association.
Entry *CreateAssociationBatchRequestEntry `type:"structure"`
2016-12-02 15:37:53 +01:00
// The source of the failure.
Fault *string `type:"string" enum:"Fault"`
2016-12-02 15:37:53 +01:00
// A description of the failure.
Message *string `type:"string"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s FailedCreateAssociation) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s FailedCreateAssociation) GoString() string {
return s.String()
}
// SetEntry sets the Entry field's value.
func (s *FailedCreateAssociation) SetEntry(v *CreateAssociationBatchRequestEntry) *FailedCreateAssociation {
s.Entry = v
return s
}
// SetFault sets the Fault field's value.
func (s *FailedCreateAssociation) SetFault(v string) *FailedCreateAssociation {
s.Fault = &v
return s
}
// SetMessage sets the Message field's value.
func (s *FailedCreateAssociation) SetMessage(v string) *FailedCreateAssociation {
s.Message = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAutomationExecutionRequest
type GetAutomationExecutionInput struct {
_ struct{} `type:"structure"`
// The unique identifier for an existing automation execution to examine. The
// execution ID is returned by StartAutomationExecution when the execution of
// an Automation document is initiated.
2016-12-02 15:37:53 +01:00
//
// AutomationExecutionId is a required field
AutomationExecutionId *string `min:"36" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetAutomationExecutionInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetAutomationExecutionInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetAutomationExecutionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetAutomationExecutionInput"}
if s.AutomationExecutionId == nil {
invalidParams.Add(request.NewErrParamRequired("AutomationExecutionId"))
2016-12-02 15:37:53 +01:00
}
if s.AutomationExecutionId != nil && len(*s.AutomationExecutionId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("AutomationExecutionId", 36))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetAutomationExecutionId sets the AutomationExecutionId field's value.
func (s *GetAutomationExecutionInput) SetAutomationExecutionId(v string) *GetAutomationExecutionInput {
s.AutomationExecutionId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAutomationExecutionResult
type GetAutomationExecutionOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Detailed information about the current state of an automation execution.
AutomationExecution *AutomationExecution `type:"structure"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetAutomationExecutionOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetAutomationExecutionOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetAutomationExecution sets the AutomationExecution field's value.
func (s *GetAutomationExecutionOutput) SetAutomationExecution(v *AutomationExecution) *GetAutomationExecutionOutput {
s.AutomationExecution = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetCommandInvocationRequest
type GetCommandInvocationInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// (Required) The parent command ID of the invocation plugin.
//
// CommandId is a required field
CommandId *string `min:"36" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// (Required) The ID of the managed instance targeted by the command. A managed
// instance can be an Amazon EC2 instance or an instance in your hybrid environment
// that is configured for Systems Manager.
2016-12-02 15:37:53 +01:00
//
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
// (Optional) The name of the plugin for which you want detailed results. If
// the SSM document contains only one plugin, the name can be omitted and the
// details will be returned.
PluginName *string `min:"4" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetCommandInvocationInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetCommandInvocationInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetCommandInvocationInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetCommandInvocationInput"}
if s.CommandId == nil {
invalidParams.Add(request.NewErrParamRequired("CommandId"))
2016-12-02 15:37:53 +01:00
}
if s.CommandId != nil && len(*s.CommandId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("CommandId", 36))
2016-12-02 15:37:53 +01:00
}
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
2016-12-02 15:37:53 +01:00
}
if s.PluginName != nil && len(*s.PluginName) < 4 {
invalidParams.Add(request.NewErrParamMinLen("PluginName", 4))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetCommandId sets the CommandId field's value.
func (s *GetCommandInvocationInput) SetCommandId(v string) *GetCommandInvocationInput {
s.CommandId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *GetCommandInvocationInput) SetInstanceId(v string) *GetCommandInvocationInput {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPluginName sets the PluginName field's value.
func (s *GetCommandInvocationInput) SetPluginName(v string) *GetCommandInvocationInput {
s.PluginName = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetCommandInvocationResult
type GetCommandInvocationOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The parent command ID of the invocation plugin.
CommandId *string `min:"36" type:"string"`
2016-12-02 15:37:53 +01:00
// The comment text for the command.
Comment *string `type:"string"`
// The name of the SSM document that was executed. For example, AWS-RunShellScript
// is an SSM document.
DocumentName *string `type:"string"`
// Duration since ExecutionStartDateTime.
ExecutionElapsedTime *string `type:"string"`
// The date and time the plugin was finished executing. Date and time are written
// in ISO 8601 format. For example, August 28, 2016 is represented as 2016-08-28.
// If the plugin has not started to execute, the string is empty.
ExecutionEndDateTime *string `type:"string"`
// The date and time the plugin started executing. Date and time are written
// in ISO 8601 format. For example, August 28, 2016 is represented as 2016-08-28.
// If the plugin has not started to execute, the string is empty.
ExecutionStartDateTime *string `type:"string"`
// The ID of the managed instance targeted by the command. A managed instance
// can be an Amazon EC2 instance or an instance in your hybrid environment that
// is configured for Systems Manager.
InstanceId *string `type:"string"`
// The name of the plugin for which you want detailed results. For example,
// aws:RunShellScript is a plugin.
PluginName *string `min:"4" type:"string"`
// The error level response code for the plugin script. If the response code
// is -1, then the command has not started executing on the instance, or it
// was not received by the instance.
ResponseCode *int64 `type:"integer"`
// The first 8,000 characters written by the plugin to stderr. If the command
// has not finished executing, then this string is empty.
StandardErrorContent *string `type:"string"`
// The URL for the complete text written by the plugin to stderr. If the command
// has not finished executing, then this string is empty.
StandardErrorUrl *string `type:"string"`
// The first 24,000 characters written by the plugin to stdout. If the command
// has not finished executing, if ExecutionStatus is neither Succeeded nor Failed,
// then this string is empty.
StandardOutputContent *string `type:"string"`
// The URL for the complete text written by the plugin to stdout in Amazon S3.
// If an Amazon S3 bucket was not specified, then this string is empty.
StandardOutputUrl *string `type:"string"`
// The status of the parent command for this invocation. This status can be
// different than StatusDetails.
Status *string `type:"string" enum:"CommandInvocationStatus"`
// A detailed status of the command execution for an invocation. StatusDetails
// includes more information than Status because it includes states resulting
// from error and concurrency control parameters. StatusDetails can show different
// results than Status. For more information about these statuses, see Monitor
// Commands (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitor-commands.html)
// (Linux) or Monitor Commands (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/monitor-commands.html)
// (Windows). StatusDetails can be one of the following values:
//
// * Pending The command has not been sent to the instance.
//
// * In Progress The command has been sent to the instance but has not
// reached a terminal state.
//
// * Delayed The system attempted to send the command to the target, but
// the target was not available. The instance might not be available because
// of network issues, the instance was stopped, etc. The system will try
// to deliver the command again.
//
// * Success The command or plugin was executed successfully. This is a
// terminal state.
//
// * Delivery Timed Out The command was not delivered to the instance before
// the delivery timeout expired. Delivery timeouts do not count against the
// parent commands MaxErrors limit, but they do contribute to whether the
// parent command status is Success or Incomplete. This is a terminal state.
//
// * Execution Timed Out The command started to execute on the instance,
// but the execution was not complete before the timeout expired. Execution
// timeouts count against the MaxErrors limit of the parent command. This
// is a terminal state.
//
// * Failed The command wasn't executed successfully on the instance. For
// a plugin, this indicates that the result code was not zero. For a command
// invocation, this indicates that the result code for one or more plugins
// was not zero. Invocation failures count against the MaxErrors limit of
// the parent command. This is a terminal state.
//
// * Canceled The command was terminated before it was completed. This
// is a terminal state.
//
// * Undeliverable The command can't be delivered to the instance. The
// instance might not exist or might not be responding. Undeliverable invocations
// don't count against the parent commands MaxErrors limit and don't contribute
// to whether the parent command status is Success or Incomplete. This is
// a terminal state.
//
// * Terminated The parent command exceeded its MaxErrors limit and subsequent
// command invocations were canceled by the system. This is a terminal state.
StatusDetails *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetCommandInvocationOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetCommandInvocationOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetCommandId sets the CommandId field's value.
func (s *GetCommandInvocationOutput) SetCommandId(v string) *GetCommandInvocationOutput {
s.CommandId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetComment sets the Comment field's value.
func (s *GetCommandInvocationOutput) SetComment(v string) *GetCommandInvocationOutput {
s.Comment = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDocumentName sets the DocumentName field's value.
func (s *GetCommandInvocationOutput) SetDocumentName(v string) *GetCommandInvocationOutput {
s.DocumentName = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetExecutionElapsedTime sets the ExecutionElapsedTime field's value.
func (s *GetCommandInvocationOutput) SetExecutionElapsedTime(v string) *GetCommandInvocationOutput {
s.ExecutionElapsedTime = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetExecutionEndDateTime sets the ExecutionEndDateTime field's value.
func (s *GetCommandInvocationOutput) SetExecutionEndDateTime(v string) *GetCommandInvocationOutput {
s.ExecutionEndDateTime = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetExecutionStartDateTime sets the ExecutionStartDateTime field's value.
func (s *GetCommandInvocationOutput) SetExecutionStartDateTime(v string) *GetCommandInvocationOutput {
s.ExecutionStartDateTime = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetInstanceId sets the InstanceId field's value.
func (s *GetCommandInvocationOutput) SetInstanceId(v string) *GetCommandInvocationOutput {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPluginName sets the PluginName field's value.
func (s *GetCommandInvocationOutput) SetPluginName(v string) *GetCommandInvocationOutput {
s.PluginName = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetResponseCode sets the ResponseCode field's value.
func (s *GetCommandInvocationOutput) SetResponseCode(v int64) *GetCommandInvocationOutput {
s.ResponseCode = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetStandardErrorContent sets the StandardErrorContent field's value.
func (s *GetCommandInvocationOutput) SetStandardErrorContent(v string) *GetCommandInvocationOutput {
s.StandardErrorContent = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetStandardErrorUrl sets the StandardErrorUrl field's value.
func (s *GetCommandInvocationOutput) SetStandardErrorUrl(v string) *GetCommandInvocationOutput {
s.StandardErrorUrl = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetStandardOutputContent sets the StandardOutputContent field's value.
func (s *GetCommandInvocationOutput) SetStandardOutputContent(v string) *GetCommandInvocationOutput {
s.StandardOutputContent = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetStandardOutputUrl sets the StandardOutputUrl field's value.
func (s *GetCommandInvocationOutput) SetStandardOutputUrl(v string) *GetCommandInvocationOutput {
s.StandardOutputUrl = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetStatus sets the Status field's value.
func (s *GetCommandInvocationOutput) SetStatus(v string) *GetCommandInvocationOutput {
s.Status = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetStatusDetails sets the StatusDetails field's value.
func (s *GetCommandInvocationOutput) SetStatusDetails(v string) *GetCommandInvocationOutput {
s.StatusDetails = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaselineRequest
type GetDefaultPatchBaselineInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s GetDefaultPatchBaselineInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetDefaultPatchBaselineInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaselineResult
type GetDefaultPatchBaselineOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the default patch baseline.
BaselineId *string `min:"20" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetDefaultPatchBaselineOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetDefaultPatchBaselineOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetBaselineId sets the BaselineId field's value.
func (s *GetDefaultPatchBaselineOutput) SetBaselineId(v string) *GetDefaultPatchBaselineOutput {
s.BaselineId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDeployablePatchSnapshotForInstanceRequest
type GetDeployablePatchSnapshotForInstanceInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The ID of the instance for which the appropriate patch snapshot should be
// retrieved.
//
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
// The user-defined snapshot ID.
//
// SnapshotId is a required field
SnapshotId *string `min:"36" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetDeployablePatchSnapshotForInstanceInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetDeployablePatchSnapshotForInstanceInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetDeployablePatchSnapshotForInstanceInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetDeployablePatchSnapshotForInstanceInput"}
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
2016-12-02 15:37:53 +01:00
}
if s.SnapshotId == nil {
invalidParams.Add(request.NewErrParamRequired("SnapshotId"))
}
if s.SnapshotId != nil && len(*s.SnapshotId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("SnapshotId", 36))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetInstanceId sets the InstanceId field's value.
func (s *GetDeployablePatchSnapshotForInstanceInput) SetInstanceId(v string) *GetDeployablePatchSnapshotForInstanceInput {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetSnapshotId sets the SnapshotId field's value.
func (s *GetDeployablePatchSnapshotForInstanceInput) SetSnapshotId(v string) *GetDeployablePatchSnapshotForInstanceInput {
s.SnapshotId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDeployablePatchSnapshotForInstanceResult
type GetDeployablePatchSnapshotForInstanceOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the instance.
InstanceId *string `type:"string"`
2016-12-02 15:37:53 +01:00
// A pre-signed Amazon S3 URL that can be used to download the patch snapshot.
SnapshotDownloadUrl *string `type:"string"`
// The user-defined snapshot ID.
SnapshotId *string `min:"36" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetDeployablePatchSnapshotForInstanceOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetDeployablePatchSnapshotForInstanceOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetInstanceId sets the InstanceId field's value.
func (s *GetDeployablePatchSnapshotForInstanceOutput) SetInstanceId(v string) *GetDeployablePatchSnapshotForInstanceOutput {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetSnapshotDownloadUrl sets the SnapshotDownloadUrl field's value.
func (s *GetDeployablePatchSnapshotForInstanceOutput) SetSnapshotDownloadUrl(v string) *GetDeployablePatchSnapshotForInstanceOutput {
s.SnapshotDownloadUrl = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetSnapshotId sets the SnapshotId field's value.
func (s *GetDeployablePatchSnapshotForInstanceOutput) SetSnapshotId(v string) *GetDeployablePatchSnapshotForInstanceOutput {
s.SnapshotId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDocumentRequest
type GetDocumentInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The document version for which you want information.
DocumentVersion *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The name of the SSM document.
//
// Name is a required field
Name *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetDocumentInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetDocumentInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetDocumentInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetDocumentInput"}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *GetDocumentInput) SetDocumentVersion(v string) *GetDocumentInput {
s.DocumentVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *GetDocumentInput) SetName(v string) *GetDocumentInput {
2016-12-02 15:37:53 +01:00
s.Name = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDocumentResult
type GetDocumentOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The contents of the SSM document.
Content *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// The document type.
2016-12-02 15:37:53 +01:00
DocumentType *string `type:"string" enum:"DocumentType"`
// The document version.
DocumentVersion *string `type:"string"`
// The name of the SSM document.
Name *string `type:"string"`
}
// String returns the string representation
func (s GetDocumentOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetDocumentOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetContent sets the Content field's value.
func (s *GetDocumentOutput) SetContent(v string) *GetDocumentOutput {
s.Content = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDocumentType sets the DocumentType field's value.
func (s *GetDocumentOutput) SetDocumentType(v string) *GetDocumentOutput {
s.DocumentType = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *GetDocumentOutput) SetDocumentVersion(v string) *GetDocumentOutput {
s.DocumentVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *GetDocumentOutput) SetName(v string) *GetDocumentOutput {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetInventoryRequest
type GetInventoryInput struct {
_ struct{} `type:"structure"`
// One or more filters. Use a filter to return a more specific list of results.
Filters []*InventoryFilter `locationNameList:"InventoryFilter" min:"1" type:"list"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"1" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
// The list of inventory item types to return.
ResultAttributes []*ResultAttribute `locationNameList:"ResultAttribute" min:"1" type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetInventoryInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetInventoryInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetInventoryInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetInventoryInput"}
if s.Filters != nil && len(s.Filters) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Filters", 1))
}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if s.ResultAttributes != nil && len(s.ResultAttributes) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ResultAttributes", 1))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
}
if s.ResultAttributes != nil {
for i, v := range s.ResultAttributes {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "ResultAttributes", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func (s *GetInventoryInput) SetFilters(v []*InventoryFilter) *GetInventoryInput {
s.Filters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *GetInventoryInput) SetMaxResults(v int64) *GetInventoryInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *GetInventoryInput) SetNextToken(v string) *GetInventoryInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetResultAttributes sets the ResultAttributes field's value.
func (s *GetInventoryInput) SetResultAttributes(v []*ResultAttribute) *GetInventoryInput {
s.ResultAttributes = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetInventoryResult
type GetInventoryOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// Collection of inventory entities such as a collection of instance inventory.
Entities []*InventoryResultEntity `locationNameList:"Entity" type:"list"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetInventoryOutput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s GetInventoryOutput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// SetEntities sets the Entities field's value.
func (s *GetInventoryOutput) SetEntities(v []*InventoryResultEntity) *GetInventoryOutput {
s.Entities = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *GetInventoryOutput) SetNextToken(v string) *GetInventoryOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetInventorySchemaRequest
type GetInventorySchemaInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"50" type:"integer"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
// The type of inventory item to return.
TypeName *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetInventorySchemaInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetInventorySchemaInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetInventorySchemaInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetInventorySchemaInput"}
if s.MaxResults != nil && *s.MaxResults < 50 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 50))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetMaxResults sets the MaxResults field's value.
func (s *GetInventorySchemaInput) SetMaxResults(v int64) *GetInventorySchemaInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *GetInventorySchemaInput) SetNextToken(v string) *GetInventorySchemaInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetTypeName sets the TypeName field's value.
func (s *GetInventorySchemaInput) SetTypeName(v string) *GetInventorySchemaInput {
s.TypeName = &v
return s
}
2016-12-02 15:37:53 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetInventorySchemaResult
type GetInventorySchemaOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
// Inventory schemas returned by the request.
Schemas []*InventoryItemSchema `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetInventorySchemaOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetInventorySchemaOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *GetInventorySchemaOutput) SetNextToken(v string) *GetInventorySchemaOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetSchemas sets the Schemas field's value.
func (s *GetInventorySchemaOutput) SetSchemas(v []*InventoryItemSchema) *GetInventorySchemaOutput {
s.Schemas = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecutionRequest
type GetMaintenanceWindowExecutionInput struct {
_ struct{} `type:"structure"`
// The ID of the Maintenance Window execution that includes the task.
//
// WindowExecutionId is a required field
WindowExecutionId *string `min:"36" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetMaintenanceWindowExecutionInput) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s GetMaintenanceWindowExecutionInput) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetMaintenanceWindowExecutionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetMaintenanceWindowExecutionInput"}
if s.WindowExecutionId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowExecutionId"))
}
if s.WindowExecutionId != nil && len(*s.WindowExecutionId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("WindowExecutionId", 36))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetWindowExecutionId sets the WindowExecutionId field's value.
func (s *GetMaintenanceWindowExecutionInput) SetWindowExecutionId(v string) *GetMaintenanceWindowExecutionInput {
s.WindowExecutionId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecutionResult
type GetMaintenanceWindowExecutionOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The time the Maintenance Window finished executing.
EndTime *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// The time the Maintenance Window started executing.
StartTime *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// The status of the Maintenance Window execution.
Status *string `type:"string" enum:"MaintenanceWindowExecutionStatus"`
2016-12-02 15:37:53 +01:00
// The details explaining the Status. Only available for certain status values.
StatusDetails *string `type:"string"`
// The ID of the task executions from the Maintenance Window execution.
TaskIds []*string `type:"list"`
// The ID of the Maintenance Window execution.
WindowExecutionId *string `min:"36" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetMaintenanceWindowExecutionOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetMaintenanceWindowExecutionOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetEndTime sets the EndTime field's value.
func (s *GetMaintenanceWindowExecutionOutput) SetEndTime(v time.Time) *GetMaintenanceWindowExecutionOutput {
s.EndTime = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetStartTime sets the StartTime field's value.
func (s *GetMaintenanceWindowExecutionOutput) SetStartTime(v time.Time) *GetMaintenanceWindowExecutionOutput {
s.StartTime = &v
return s
}
// SetStatus sets the Status field's value.
func (s *GetMaintenanceWindowExecutionOutput) SetStatus(v string) *GetMaintenanceWindowExecutionOutput {
s.Status = &v
return s
}
// SetStatusDetails sets the StatusDetails field's value.
func (s *GetMaintenanceWindowExecutionOutput) SetStatusDetails(v string) *GetMaintenanceWindowExecutionOutput {
s.StatusDetails = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetTaskIds sets the TaskIds field's value.
func (s *GetMaintenanceWindowExecutionOutput) SetTaskIds(v []*string) *GetMaintenanceWindowExecutionOutput {
s.TaskIds = v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowExecutionId sets the WindowExecutionId field's value.
func (s *GetMaintenanceWindowExecutionOutput) SetWindowExecutionId(v string) *GetMaintenanceWindowExecutionOutput {
s.WindowExecutionId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecutionTaskRequest
type GetMaintenanceWindowExecutionTaskInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the specific task execution in the Maintenance Window task that
// should be retrieved.
//
// TaskId is a required field
TaskId *string `min:"36" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The ID of the Maintenance Window execution that includes the task.
//
// WindowExecutionId is a required field
WindowExecutionId *string `min:"36" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetMaintenanceWindowExecutionTaskInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetMaintenanceWindowExecutionTaskInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetMaintenanceWindowExecutionTaskInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetMaintenanceWindowExecutionTaskInput"}
if s.TaskId == nil {
invalidParams.Add(request.NewErrParamRequired("TaskId"))
}
if s.TaskId != nil && len(*s.TaskId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("TaskId", 36))
}
if s.WindowExecutionId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowExecutionId"))
}
if s.WindowExecutionId != nil && len(*s.WindowExecutionId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("WindowExecutionId", 36))
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-12-02 15:37:53 +01:00
}
// SetTaskId sets the TaskId field's value.
func (s *GetMaintenanceWindowExecutionTaskInput) SetTaskId(v string) *GetMaintenanceWindowExecutionTaskInput {
s.TaskId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowExecutionId sets the WindowExecutionId field's value.
func (s *GetMaintenanceWindowExecutionTaskInput) SetWindowExecutionId(v string) *GetMaintenanceWindowExecutionTaskInput {
s.WindowExecutionId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecutionTaskResult
type GetMaintenanceWindowExecutionTaskOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The time the task execution completed.
EndTime *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// The defined maximum number of task executions that could be run in parallel.
MaxConcurrency *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// The defined maximum number of task execution errors allowed before scheduling
// of the task execution would have been stopped.
MaxErrors *string `min:"1" type:"string"`
// The priority of the task.
Priority *int64 `type:"integer"`
// The role that was assumed when executing the task.
ServiceRole *string `type:"string"`
// The time the task execution started.
StartTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The status of the task.
Status *string `type:"string" enum:"MaintenanceWindowExecutionStatus"`
// The details explaining the Status. Only available for certain status values.
StatusDetails *string `type:"string"`
// The ARN of the executed task.
TaskArn *string `min:"1" type:"string"`
// The ID of the specific task execution in the Maintenance Window task that
// was retrieved.
TaskExecutionId *string `min:"36" type:"string"`
// The parameters passed to the task when it was executed. The map has the following
// format:
//
// Key: string, 1 ≤ length ≤ 255
//
// Value: an array of strings where each string 1 ≤ length ≤ 255
TaskParameters []map[string]*MaintenanceWindowTaskParameterValueExpression `type:"list"`
// The type of task executed.
Type *string `type:"string" enum:"MaintenanceWindowTaskType"`
// The ID of the Maintenance Window execution that includes the task.
WindowExecutionId *string `min:"36" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetMaintenanceWindowExecutionTaskOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetMaintenanceWindowExecutionTaskOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetEndTime sets the EndTime field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetEndTime(v time.Time) *GetMaintenanceWindowExecutionTaskOutput {
s.EndTime = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxConcurrency sets the MaxConcurrency field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetMaxConcurrency(v string) *GetMaintenanceWindowExecutionTaskOutput {
s.MaxConcurrency = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxErrors sets the MaxErrors field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetMaxErrors(v string) *GetMaintenanceWindowExecutionTaskOutput {
s.MaxErrors = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPriority sets the Priority field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetPriority(v int64) *GetMaintenanceWindowExecutionTaskOutput {
s.Priority = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetServiceRole sets the ServiceRole field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetServiceRole(v string) *GetMaintenanceWindowExecutionTaskOutput {
s.ServiceRole = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetStartTime sets the StartTime field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetStartTime(v time.Time) *GetMaintenanceWindowExecutionTaskOutput {
s.StartTime = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetStatus sets the Status field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetStatus(v string) *GetMaintenanceWindowExecutionTaskOutput {
s.Status = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetStatusDetails sets the StatusDetails field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetStatusDetails(v string) *GetMaintenanceWindowExecutionTaskOutput {
s.StatusDetails = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetTaskArn sets the TaskArn field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetTaskArn(v string) *GetMaintenanceWindowExecutionTaskOutput {
s.TaskArn = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetTaskExecutionId sets the TaskExecutionId field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetTaskExecutionId(v string) *GetMaintenanceWindowExecutionTaskOutput {
s.TaskExecutionId = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetTaskParameters sets the TaskParameters field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetTaskParameters(v []map[string]*MaintenanceWindowTaskParameterValueExpression) *GetMaintenanceWindowExecutionTaskOutput {
s.TaskParameters = v
return s
2016-12-02 15:37:53 +01:00
}
// SetType sets the Type field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetType(v string) *GetMaintenanceWindowExecutionTaskOutput {
s.Type = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowExecutionId sets the WindowExecutionId field's value.
func (s *GetMaintenanceWindowExecutionTaskOutput) SetWindowExecutionId(v string) *GetMaintenanceWindowExecutionTaskOutput {
s.WindowExecutionId = &v
return s
}
2016-12-02 15:37:53 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowRequest
type GetMaintenanceWindowInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The ID of the desired Maintenance Window.
//
// WindowId is a required field
WindowId *string `min:"20" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetMaintenanceWindowInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetMaintenanceWindowInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetMaintenanceWindowInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetMaintenanceWindowInput"}
if s.WindowId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowId"))
2016-12-02 15:37:53 +01:00
}
if s.WindowId != nil && len(*s.WindowId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("WindowId", 20))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetWindowId sets the WindowId field's value.
func (s *GetMaintenanceWindowInput) SetWindowId(v string) *GetMaintenanceWindowInput {
s.WindowId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowResult
type GetMaintenanceWindowOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Whether targets must be registered with the Maintenance Window before tasks
// can be defined for those targets.
AllowUnassociatedTargets *bool `type:"boolean"`
2016-12-02 15:37:53 +01:00
// The date the Maintenance Window was created.
CreatedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// The number of hours before the end of the Maintenance Window that Systems
// Manager stops scheduling new tasks for execution.
Cutoff *int64 `type:"integer"`
2016-12-02 15:37:53 +01:00
// The duration of the Maintenance Window in hours.
Duration *int64 `min:"1" type:"integer"`
2016-12-02 15:37:53 +01:00
// Whether the Maintenance Windows is enabled.
Enabled *bool `type:"boolean"`
2016-12-02 15:37:53 +01:00
// The date the Maintenance Window was last modified.
ModifiedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// The name of the Maintenance Window.
Name *string `min:"3" type:"string"`
2016-12-02 15:37:53 +01:00
// The schedule of the Maintenance Window in the form of a cron or rate expression.
Schedule *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// The ID of the created Maintenance Window.
WindowId *string `min:"20" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetMaintenanceWindowOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetMaintenanceWindowOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetAllowUnassociatedTargets sets the AllowUnassociatedTargets field's value.
func (s *GetMaintenanceWindowOutput) SetAllowUnassociatedTargets(v bool) *GetMaintenanceWindowOutput {
s.AllowUnassociatedTargets = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetCreatedDate sets the CreatedDate field's value.
func (s *GetMaintenanceWindowOutput) SetCreatedDate(v time.Time) *GetMaintenanceWindowOutput {
s.CreatedDate = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetCutoff sets the Cutoff field's value.
func (s *GetMaintenanceWindowOutput) SetCutoff(v int64) *GetMaintenanceWindowOutput {
s.Cutoff = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDuration sets the Duration field's value.
func (s *GetMaintenanceWindowOutput) SetDuration(v int64) *GetMaintenanceWindowOutput {
s.Duration = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetEnabled sets the Enabled field's value.
func (s *GetMaintenanceWindowOutput) SetEnabled(v bool) *GetMaintenanceWindowOutput {
s.Enabled = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetModifiedDate sets the ModifiedDate field's value.
func (s *GetMaintenanceWindowOutput) SetModifiedDate(v time.Time) *GetMaintenanceWindowOutput {
s.ModifiedDate = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *GetMaintenanceWindowOutput) SetName(v string) *GetMaintenanceWindowOutput {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetSchedule sets the Schedule field's value.
func (s *GetMaintenanceWindowOutput) SetSchedule(v string) *GetMaintenanceWindowOutput {
s.Schedule = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowId sets the WindowId field's value.
func (s *GetMaintenanceWindowOutput) SetWindowId(v string) *GetMaintenanceWindowOutput {
s.WindowId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParameterHistoryRequest
type GetParameterHistoryInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"1" type:"integer"`
2016-12-02 15:37:53 +01:00
// The name of a parameter you want to query.
2016-12-02 15:37:53 +01:00
//
// Name is a required field
Name *string `min:"1" type:"string" required:"true"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
// Return decrypted values for secure string parameters. This flag is ignored
// for String and StringList parameter types.
WithDecryption *bool `type:"boolean"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetParameterHistoryInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetParameterHistoryInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetParameterHistoryInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetParameterHistoryInput"}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
2016-12-02 15:37:53 +01:00
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if s.Name != nil && len(*s.Name) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Name", 1))
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetMaxResults sets the MaxResults field's value.
func (s *GetParameterHistoryInput) SetMaxResults(v int64) *GetParameterHistoryInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *GetParameterHistoryInput) SetName(v string) *GetParameterHistoryInput {
2016-12-02 15:37:53 +01:00
s.Name = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *GetParameterHistoryInput) SetNextToken(v string) *GetParameterHistoryInput {
s.NextToken = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetWithDecryption sets the WithDecryption field's value.
func (s *GetParameterHistoryInput) SetWithDecryption(v bool) *GetParameterHistoryInput {
s.WithDecryption = &v
return s
}
2016-12-02 15:37:53 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParameterHistoryResult
type GetParameterHistoryOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-12-02 15:37:53 +01:00
// A list of parameters returned by the request.
Parameters []*ParameterHistory `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetParameterHistoryOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetParameterHistoryOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetNextToken sets the NextToken field's value.
func (s *GetParameterHistoryOutput) SetNextToken(v string) *GetParameterHistoryOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetParameters sets the Parameters field's value.
func (s *GetParameterHistoryOutput) SetParameters(v []*ParameterHistory) *GetParameterHistoryOutput {
s.Parameters = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParametersRequest
type GetParametersInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Names of the parameters for which you want to query information.
//
// Names is a required field
Names []*string `min:"1" type:"list" required:"true"`
2016-12-02 15:37:53 +01:00
// Return decrypted secure string value. Return decrypted values for secure
// string parameters. This flag is ignored for String and StringList parameter
// types.
WithDecryption *bool `type:"boolean"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetParametersInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetParametersInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetParametersInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetParametersInput"}
if s.Names == nil {
invalidParams.Add(request.NewErrParamRequired("Names"))
2016-12-02 15:37:53 +01:00
}
if s.Names != nil && len(s.Names) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Names", 1))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetNames sets the Names field's value.
func (s *GetParametersInput) SetNames(v []*string) *GetParametersInput {
s.Names = v
2016-12-02 15:37:53 +01:00
return s
}
// SetWithDecryption sets the WithDecryption field's value.
func (s *GetParametersInput) SetWithDecryption(v bool) *GetParametersInput {
s.WithDecryption = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParametersResult
type GetParametersOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// A list of parameters that are not formatted correctly or do not run when
// executed.
InvalidParameters []*string `min:"1" type:"list"`
2016-12-02 15:37:53 +01:00
// A list of parameters used by the AWS account.
Parameters []*Parameter `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetParametersOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetParametersOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetInvalidParameters sets the InvalidParameters field's value.
func (s *GetParametersOutput) SetInvalidParameters(v []*string) *GetParametersOutput {
s.InvalidParameters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetParameters sets the Parameters field's value.
func (s *GetParametersOutput) SetParameters(v []*Parameter) *GetParametersOutput {
s.Parameters = v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroupRequest
type GetPatchBaselineForPatchGroupInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The name of the patch group whose patch baseline should be retrieved.
//
// PatchGroup is a required field
PatchGroup *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetPatchBaselineForPatchGroupInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetPatchBaselineForPatchGroupInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetPatchBaselineForPatchGroupInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetPatchBaselineForPatchGroupInput"}
if s.PatchGroup == nil {
invalidParams.Add(request.NewErrParamRequired("PatchGroup"))
2016-12-02 15:37:53 +01:00
}
if s.PatchGroup != nil && len(*s.PatchGroup) < 1 {
invalidParams.Add(request.NewErrParamMinLen("PatchGroup", 1))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-12-02 15:37:53 +01:00
}
// SetPatchGroup sets the PatchGroup field's value.
func (s *GetPatchBaselineForPatchGroupInput) SetPatchGroup(v string) *GetPatchBaselineForPatchGroupInput {
s.PatchGroup = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroupResult
type GetPatchBaselineForPatchGroupOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the patch baseline that should be used for the patch group.
BaselineId *string `min:"20" type:"string"`
2016-12-02 15:37:53 +01:00
// The name of the patch group.
PatchGroup *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetPatchBaselineForPatchGroupOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetPatchBaselineForPatchGroupOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetBaselineId sets the BaselineId field's value.
func (s *GetPatchBaselineForPatchGroupOutput) SetBaselineId(v string) *GetPatchBaselineForPatchGroupOutput {
s.BaselineId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPatchGroup sets the PatchGroup field's value.
func (s *GetPatchBaselineForPatchGroupOutput) SetPatchGroup(v string) *GetPatchBaselineForPatchGroupOutput {
s.PatchGroup = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineRequest
type GetPatchBaselineInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the patch baseline to retrieve.
2016-12-02 15:37:53 +01:00
//
// BaselineId is a required field
BaselineId *string `min:"20" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetPatchBaselineInput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetPatchBaselineInput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetPatchBaselineInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetPatchBaselineInput"}
if s.BaselineId == nil {
invalidParams.Add(request.NewErrParamRequired("BaselineId"))
2016-12-02 15:37:53 +01:00
}
if s.BaselineId != nil && len(*s.BaselineId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("BaselineId", 20))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetBaselineId sets the BaselineId field's value.
func (s *GetPatchBaselineInput) SetBaselineId(v string) *GetPatchBaselineInput {
s.BaselineId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineResult
type GetPatchBaselineOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// A set of rules used to include patches in the baseline.
ApprovalRules *PatchRuleGroup `type:"structure"`
2016-12-02 15:37:53 +01:00
// A list of explicitly approved patches for the baseline.
ApprovedPatches []*string `type:"list"`
2016-12-02 15:37:53 +01:00
// The ID of the retrieved patch baseline.
BaselineId *string `min:"20" type:"string"`
2016-12-02 15:37:53 +01:00
// The date the patch baseline was created.
CreatedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// A description of the patch baseline.
Description *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// A set of global filters used to exclude patches from the baseline.
GlobalFilters *PatchFilterGroup `type:"structure"`
// The date the patch baseline was last modified.
ModifiedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The name of the patch baseline.
Name *string `min:"3" type:"string"`
// Patch groups included in the patch baseline.
PatchGroups []*string `type:"list"`
// A list of explicitly rejected patches for the baseline.
RejectedPatches []*string `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s GetPatchBaselineOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetPatchBaselineOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetApprovalRules sets the ApprovalRules field's value.
func (s *GetPatchBaselineOutput) SetApprovalRules(v *PatchRuleGroup) *GetPatchBaselineOutput {
s.ApprovalRules = v
2016-12-02 15:37:53 +01:00
return s
}
// SetApprovedPatches sets the ApprovedPatches field's value.
func (s *GetPatchBaselineOutput) SetApprovedPatches(v []*string) *GetPatchBaselineOutput {
s.ApprovedPatches = v
2016-12-02 15:37:53 +01:00
return s
}
// SetBaselineId sets the BaselineId field's value.
func (s *GetPatchBaselineOutput) SetBaselineId(v string) *GetPatchBaselineOutput {
s.BaselineId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetCreatedDate sets the CreatedDate field's value.
func (s *GetPatchBaselineOutput) SetCreatedDate(v time.Time) *GetPatchBaselineOutput {
s.CreatedDate = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDescription sets the Description field's value.
func (s *GetPatchBaselineOutput) SetDescription(v string) *GetPatchBaselineOutput {
s.Description = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetGlobalFilters sets the GlobalFilters field's value.
func (s *GetPatchBaselineOutput) SetGlobalFilters(v *PatchFilterGroup) *GetPatchBaselineOutput {
s.GlobalFilters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetModifiedDate sets the ModifiedDate field's value.
func (s *GetPatchBaselineOutput) SetModifiedDate(v time.Time) *GetPatchBaselineOutput {
s.ModifiedDate = &v
return s
}
// SetName sets the Name field's value.
func (s *GetPatchBaselineOutput) SetName(v string) *GetPatchBaselineOutput {
s.Name = &v
return s
}
// SetPatchGroups sets the PatchGroups field's value.
func (s *GetPatchBaselineOutput) SetPatchGroups(v []*string) *GetPatchBaselineOutput {
s.PatchGroups = v
return s
}
// SetRejectedPatches sets the RejectedPatches field's value.
func (s *GetPatchBaselineOutput) SetRejectedPatches(v []*string) *GetPatchBaselineOutput {
s.RejectedPatches = v
return s
}
// Status information about the aggregated associations.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceAggregatedAssociationOverview
type InstanceAggregatedAssociationOverview struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// Detailed status information about the aggregated associations.
DetailedStatus *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The number of associations for the instance(s).
InstanceAssociationStatusAggregatedCount map[string]*int64 `type:"map"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InstanceAggregatedAssociationOverview) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InstanceAggregatedAssociationOverview) GoString() string {
return s.String()
}
// SetDetailedStatus sets the DetailedStatus field's value.
func (s *InstanceAggregatedAssociationOverview) SetDetailedStatus(v string) *InstanceAggregatedAssociationOverview {
s.DetailedStatus = &v
return s
}
// SetInstanceAssociationStatusAggregatedCount sets the InstanceAssociationStatusAggregatedCount field's value.
func (s *InstanceAggregatedAssociationOverview) SetInstanceAssociationStatusAggregatedCount(v map[string]*int64) *InstanceAggregatedAssociationOverview {
s.InstanceAssociationStatusAggregatedCount = v
return s
}
// One or more association documents on the instance.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceAssociation
type InstanceAssociation struct {
_ struct{} `type:"structure"`
// The association ID.
AssociationId *string `type:"string"`
// The content of the association document for the instance(s).
Content *string `min:"1" type:"string"`
// The instance ID.
InstanceId *string `type:"string"`
}
// String returns the string representation
func (s InstanceAssociation) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InstanceAssociation) GoString() string {
return s.String()
}
// SetAssociationId sets the AssociationId field's value.
func (s *InstanceAssociation) SetAssociationId(v string) *InstanceAssociation {
s.AssociationId = &v
return s
}
// SetContent sets the Content field's value.
func (s *InstanceAssociation) SetContent(v string) *InstanceAssociation {
s.Content = &v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *InstanceAssociation) SetInstanceId(v string) *InstanceAssociation {
s.InstanceId = &v
return s
}
// An Amazon S3 bucket where you want to store the results of this request.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceAssociationOutputLocation
type InstanceAssociationOutputLocation struct {
_ struct{} `type:"structure"`
// An Amazon S3 bucket where you want to store the results of this request.
S3Location *S3OutputLocation `type:"structure"`
}
// String returns the string representation
func (s InstanceAssociationOutputLocation) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InstanceAssociationOutputLocation) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *InstanceAssociationOutputLocation) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "InstanceAssociationOutputLocation"}
if s.S3Location != nil {
if err := s.S3Location.Validate(); err != nil {
invalidParams.AddNested("S3Location", err.(request.ErrInvalidParams))
}
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetS3Location sets the S3Location field's value.
func (s *InstanceAssociationOutputLocation) SetS3Location(v *S3OutputLocation) *InstanceAssociationOutputLocation {
s.S3Location = v
2016-12-02 15:37:53 +01:00
return s
}
// The URL of Amazon S3 bucket where you want to store the results of this request.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceAssociationOutputUrl
type InstanceAssociationOutputUrl struct {
_ struct{} `type:"structure"`
// The URL of Amazon S3 bucket where you want to store the results of this request.
S3OutputUrl *S3OutputUrl `type:"structure"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InstanceAssociationOutputUrl) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s InstanceAssociationOutputUrl) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetS3OutputUrl sets the S3OutputUrl field's value.
func (s *InstanceAssociationOutputUrl) SetS3OutputUrl(v *S3OutputUrl) *InstanceAssociationOutputUrl {
s.S3OutputUrl = v
return s
}
2016-12-02 15:37:53 +01:00
// Status information about the instance association.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceAssociationStatusInfo
type InstanceAssociationStatusInfo struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The association ID.
AssociationId *string `type:"string"`
2016-12-02 15:37:53 +01:00
// Detailed status information about the instance association.
DetailedStatus *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The association document verions.
DocumentVersion *string `type:"string"`
2016-12-02 15:37:53 +01:00
// An error code returned by the request to create the association.
ErrorCode *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The date the instance association executed.
ExecutionDate *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// Summary information about association execution.
ExecutionSummary *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// The instance ID where the association was created.
InstanceId *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The name of the association.
Name *string `type:"string"`
2016-12-02 15:37:53 +01:00
// A URL for an Amazon S3 bucket where you want to store the results of this
// request.
OutputUrl *InstanceAssociationOutputUrl `type:"structure"`
2016-12-02 15:37:53 +01:00
// Status information about the instance association.
Status *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InstanceAssociationStatusInfo) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InstanceAssociationStatusInfo) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetAssociationId sets the AssociationId field's value.
func (s *InstanceAssociationStatusInfo) SetAssociationId(v string) *InstanceAssociationStatusInfo {
s.AssociationId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDetailedStatus sets the DetailedStatus field's value.
func (s *InstanceAssociationStatusInfo) SetDetailedStatus(v string) *InstanceAssociationStatusInfo {
s.DetailedStatus = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *InstanceAssociationStatusInfo) SetDocumentVersion(v string) *InstanceAssociationStatusInfo {
s.DocumentVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetErrorCode sets the ErrorCode field's value.
func (s *InstanceAssociationStatusInfo) SetErrorCode(v string) *InstanceAssociationStatusInfo {
s.ErrorCode = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetExecutionDate sets the ExecutionDate field's value.
func (s *InstanceAssociationStatusInfo) SetExecutionDate(v time.Time) *InstanceAssociationStatusInfo {
s.ExecutionDate = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetExecutionSummary sets the ExecutionSummary field's value.
func (s *InstanceAssociationStatusInfo) SetExecutionSummary(v string) *InstanceAssociationStatusInfo {
s.ExecutionSummary = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *InstanceAssociationStatusInfo) SetInstanceId(v string) *InstanceAssociationStatusInfo {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *InstanceAssociationStatusInfo) SetName(v string) *InstanceAssociationStatusInfo {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetOutputUrl sets the OutputUrl field's value.
func (s *InstanceAssociationStatusInfo) SetOutputUrl(v *InstanceAssociationOutputUrl) *InstanceAssociationStatusInfo {
s.OutputUrl = v
2016-12-02 15:37:53 +01:00
return s
}
// SetStatus sets the Status field's value.
func (s *InstanceAssociationStatusInfo) SetStatus(v string) *InstanceAssociationStatusInfo {
s.Status = &v
2016-12-02 15:37:53 +01:00
return s
}
// Describes a filter for a specific list of instances.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceInformation
type InstanceInformation struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The activation ID created by Systems Manager when the server or VM was registered.
ActivationId *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The version of the SSM agent running on your Linux instance.
AgentVersion *string `type:"string"`
2016-12-02 15:37:53 +01:00
// Information about the association.
AssociationOverview *InstanceAggregatedAssociationOverview `type:"structure"`
2016-12-02 15:37:53 +01:00
// The status of the association.
AssociationStatus *string `type:"string"`
// The fully qualified host name of the managed instance.
ComputerName *string `min:"1" type:"string"`
// The IP address of the managed instance.
IPAddress *string `min:"1" type:"string"`
// The Amazon Identity and Access Management (IAM) role assigned to EC2 instances
// or managed instances.
IamRole *string `type:"string"`
// The instance ID.
InstanceId *string `type:"string"`
// Indicates whether latest version of the SSM agent is running on your instance.
IsLatestVersion *bool `type:"boolean"`
// The date the association was last executed.
LastAssociationExecutionDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The date and time when agent last pinged Systems Manager service.
LastPingDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The last date the association was successfully run.
LastSuccessfulAssociationExecutionDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The name of the managed instance.
Name *string `type:"string"`
// Connection status of the SSM agent.
PingStatus *string `type:"string" enum:"PingStatus"`
// The name of the operating system platform running on your instance.
PlatformName *string `type:"string"`
// The operating system platform type.
PlatformType *string `type:"string" enum:"PlatformType"`
// The version of the OS platform running on your instance.
PlatformVersion *string `type:"string"`
// The date the server or VM was registered with AWS as a managed instance.
RegistrationDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The type of instance. Instances are either EC2 instances or managed instances.
ResourceType *string `type:"string" enum:"ResourceType"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InstanceInformation) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InstanceInformation) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetActivationId sets the ActivationId field's value.
func (s *InstanceInformation) SetActivationId(v string) *InstanceInformation {
s.ActivationId = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetAgentVersion sets the AgentVersion field's value.
func (s *InstanceInformation) SetAgentVersion(v string) *InstanceInformation {
s.AgentVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetAssociationOverview sets the AssociationOverview field's value.
func (s *InstanceInformation) SetAssociationOverview(v *InstanceAggregatedAssociationOverview) *InstanceInformation {
s.AssociationOverview = v
return s
}
2016-12-02 15:37:53 +01:00
// SetAssociationStatus sets the AssociationStatus field's value.
func (s *InstanceInformation) SetAssociationStatus(v string) *InstanceInformation {
s.AssociationStatus = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetComputerName sets the ComputerName field's value.
func (s *InstanceInformation) SetComputerName(v string) *InstanceInformation {
s.ComputerName = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetIPAddress sets the IPAddress field's value.
func (s *InstanceInformation) SetIPAddress(v string) *InstanceInformation {
s.IPAddress = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetIamRole sets the IamRole field's value.
func (s *InstanceInformation) SetIamRole(v string) *InstanceInformation {
s.IamRole = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetInstanceId sets the InstanceId field's value.
func (s *InstanceInformation) SetInstanceId(v string) *InstanceInformation {
s.InstanceId = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetIsLatestVersion sets the IsLatestVersion field's value.
func (s *InstanceInformation) SetIsLatestVersion(v bool) *InstanceInformation {
s.IsLatestVersion = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetLastAssociationExecutionDate sets the LastAssociationExecutionDate field's value.
func (s *InstanceInformation) SetLastAssociationExecutionDate(v time.Time) *InstanceInformation {
s.LastAssociationExecutionDate = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetLastPingDateTime sets the LastPingDateTime field's value.
func (s *InstanceInformation) SetLastPingDateTime(v time.Time) *InstanceInformation {
s.LastPingDateTime = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetLastSuccessfulAssociationExecutionDate sets the LastSuccessfulAssociationExecutionDate field's value.
func (s *InstanceInformation) SetLastSuccessfulAssociationExecutionDate(v time.Time) *InstanceInformation {
s.LastSuccessfulAssociationExecutionDate = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *InstanceInformation) SetName(v string) *InstanceInformation {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPingStatus sets the PingStatus field's value.
func (s *InstanceInformation) SetPingStatus(v string) *InstanceInformation {
s.PingStatus = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPlatformName sets the PlatformName field's value.
func (s *InstanceInformation) SetPlatformName(v string) *InstanceInformation {
s.PlatformName = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPlatformType sets the PlatformType field's value.
func (s *InstanceInformation) SetPlatformType(v string) *InstanceInformation {
s.PlatformType = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetPlatformVersion sets the PlatformVersion field's value.
func (s *InstanceInformation) SetPlatformVersion(v string) *InstanceInformation {
s.PlatformVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetRegistrationDate sets the RegistrationDate field's value.
func (s *InstanceInformation) SetRegistrationDate(v time.Time) *InstanceInformation {
s.RegistrationDate = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetResourceType sets the ResourceType field's value.
func (s *InstanceInformation) SetResourceType(v string) *InstanceInformation {
s.ResourceType = &v
2016-12-02 15:37:53 +01:00
return s
}
// Describes a filter for a specific list of instances.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceInformationFilter
type InstanceInformationFilter struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The name of the filter.
2016-12-02 15:37:53 +01:00
//
// Key is a required field
Key *string `locationName:"key" type:"string" required:"true" enum:"InstanceInformationFilterKey"`
2016-12-02 15:37:53 +01:00
// The filter values.
//
// ValueSet is a required field
ValueSet []*string `locationName:"valueSet" locationNameList:"InstanceInformationFilterValue" min:"1" type:"list" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InstanceInformationFilter) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InstanceInformationFilter) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *InstanceInformationFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "InstanceInformationFilter"}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
2016-12-02 15:37:53 +01:00
}
if s.ValueSet == nil {
invalidParams.Add(request.NewErrParamRequired("ValueSet"))
2016-12-02 15:37:53 +01:00
}
if s.ValueSet != nil && len(s.ValueSet) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ValueSet", 1))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetKey sets the Key field's value.
func (s *InstanceInformationFilter) SetKey(v string) *InstanceInformationFilter {
s.Key = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetValueSet sets the ValueSet field's value.
func (s *InstanceInformationFilter) SetValueSet(v []*string) *InstanceInformationFilter {
s.ValueSet = v
2016-12-02 15:37:53 +01:00
return s
}
// The filters to describe or get information about your managed instances.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceInformationStringFilter
type InstanceInformationStringFilter struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The filter key name to describe your instances. For example:
2016-12-02 15:37:53 +01:00
//
// "InstanceIds"|"AgentVersion"|"PingStatus"|"PlatformTypes"|"ActivationIds"|"IamRole"|"ResourceType"|”AssociationStatus”|”Tag
// Key”
//
// Key is a required field
Key *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The filter values.
//
// Values is a required field
Values []*string `locationNameList:"InstanceInformationFilterValue" min:"1" type:"list" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InstanceInformationStringFilter) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InstanceInformationStringFilter) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *InstanceInformationStringFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "InstanceInformationStringFilter"}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
2016-12-02 15:37:53 +01:00
}
if s.Key != nil && len(*s.Key) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Key", 1))
}
if s.Values == nil {
invalidParams.Add(request.NewErrParamRequired("Values"))
}
if s.Values != nil && len(s.Values) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Values", 1))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetKey sets the Key field's value.
func (s *InstanceInformationStringFilter) SetKey(v string) *InstanceInformationStringFilter {
s.Key = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetValues sets the Values field's value.
func (s *InstanceInformationStringFilter) SetValues(v []*string) *InstanceInformationStringFilter {
s.Values = v
2016-11-19 19:41:01 +01:00
return s
}
// Defines the high-level patch compliance state for a managed instance, providing
// information about the number of installed, missing, not applicable, and failed
// patches along with metadata about the operation when this information was
// gathered for the instance.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstancePatchState
type InstancePatchState struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The ID of the patch baseline used to patch the instance.
//
// BaselineId is a required field
BaselineId *string `min:"20" type:"string" required:"true"`
// The number of patches from the patch baseline that were attempted to be installed
// during the last patching operation, but failed to install.
FailedCount *int64 `type:"integer"`
// The number of patches from the patch baseline that are installed on the instance.
InstalledCount *int64 `type:"integer"`
// The number of patches not specified in the patch baseline that are installed
// on the instance.
InstalledOtherCount *int64 `type:"integer"`
// The ID of the managed instance the high-level patch compliance information
// was collected for.
//
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
// The number of patches from the patch baseline that are applicable for the
// instance but arent currently installed.
MissingCount *int64 `type:"integer"`
// The number of patches from the patch baseline that arent applicable for
// the instance and hence arent installed on the instance.
NotApplicableCount *int64 `type:"integer"`
// The type of patching operation that was performed: SCAN (assess patch compliance
// state) or INSTALL (install missing patches).
//
// Operation is a required field
Operation *string `type:"string" required:"true" enum:"PatchOperationType"`
// The time the most recent patching operation completed on the instance.
//
// OperationEndTime is a required field
OperationEndTime *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
// The time the most recent patching operation was started on the instance.
//
// OperationStartTime is a required field
OperationStartTime *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
// Placeholder information, this field will always be empty in the current release
// of the service.
OwnerInformation *string `min:"1" type:"string"`
// The name of the patch group the managed instance belongs to.
//
// PatchGroup is a required field
PatchGroup *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The ID of the patch baseline snapshot used during the patching operation
// when this compliance data was collected.
SnapshotId *string `min:"36" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InstancePatchState) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InstancePatchState) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetBaselineId sets the BaselineId field's value.
func (s *InstancePatchState) SetBaselineId(v string) *InstancePatchState {
s.BaselineId = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetFailedCount sets the FailedCount field's value.
func (s *InstancePatchState) SetFailedCount(v int64) *InstancePatchState {
s.FailedCount = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetInstalledCount sets the InstalledCount field's value.
func (s *InstancePatchState) SetInstalledCount(v int64) *InstancePatchState {
s.InstalledCount = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetInstalledOtherCount sets the InstalledOtherCount field's value.
func (s *InstancePatchState) SetInstalledOtherCount(v int64) *InstancePatchState {
s.InstalledOtherCount = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetInstanceId sets the InstanceId field's value.
func (s *InstancePatchState) SetInstanceId(v string) *InstancePatchState {
s.InstanceId = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetMissingCount sets the MissingCount field's value.
func (s *InstancePatchState) SetMissingCount(v int64) *InstancePatchState {
s.MissingCount = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetNotApplicableCount sets the NotApplicableCount field's value.
func (s *InstancePatchState) SetNotApplicableCount(v int64) *InstancePatchState {
s.NotApplicableCount = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetOperation sets the Operation field's value.
func (s *InstancePatchState) SetOperation(v string) *InstancePatchState {
s.Operation = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetOperationEndTime sets the OperationEndTime field's value.
func (s *InstancePatchState) SetOperationEndTime(v time.Time) *InstancePatchState {
s.OperationEndTime = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetOperationStartTime sets the OperationStartTime field's value.
func (s *InstancePatchState) SetOperationStartTime(v time.Time) *InstancePatchState {
s.OperationStartTime = &v
return s
2016-12-02 15:37:53 +01:00
}
// SetOwnerInformation sets the OwnerInformation field's value.
func (s *InstancePatchState) SetOwnerInformation(v string) *InstancePatchState {
s.OwnerInformation = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetPatchGroup sets the PatchGroup field's value.
func (s *InstancePatchState) SetPatchGroup(v string) *InstancePatchState {
s.PatchGroup = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetSnapshotId sets the SnapshotId field's value.
func (s *InstancePatchState) SetSnapshotId(v string) *InstancePatchState {
s.SnapshotId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Defines a filter used in DescribeInstancePatchStatesForPatchGroup used to
// scope down the information returned by the API.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstancePatchStateFilter
type InstancePatchStateFilter struct {
_ struct{} `type:"structure"`
// The key for the filter. Supported values are FailedCount, InstalledCount,
// InstalledOtherCount, MissingCount and NotApplicableCount.
//
// Key is a required field
Key *string `min:"1" type:"string" required:"true"`
// The type of comparison that should be performed for the value: Equal, NotEqual,
// LessThan or GreaterThan.
//
// Type is a required field
Type *string `type:"string" required:"true" enum:"InstancePatchStateOperatorType"`
// The value for the filter, must be an integer greater than or equal to 0.
//
// Values is a required field
Values []*string `min:"1" type:"list" required:"true"`
2016-12-02 15:37:53 +01:00
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s InstancePatchStateFilter) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s InstancePatchStateFilter) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *InstancePatchStateFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "InstancePatchStateFilter"}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
}
if s.Key != nil && len(*s.Key) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Key", 1))
}
if s.Type == nil {
invalidParams.Add(request.NewErrParamRequired("Type"))
}
if s.Values == nil {
invalidParams.Add(request.NewErrParamRequired("Values"))
}
if s.Values != nil && len(s.Values) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Values", 1))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetKey sets the Key field's value.
func (s *InstancePatchStateFilter) SetKey(v string) *InstancePatchStateFilter {
s.Key = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetType sets the Type field's value.
func (s *InstancePatchStateFilter) SetType(v string) *InstancePatchStateFilter {
s.Type = &v
return s
}
// SetValues sets the Values field's value.
func (s *InstancePatchStateFilter) SetValues(v []*string) *InstancePatchStateFilter {
s.Values = v
return s
}
// One or more filters. Use a filter to return a more specific list of results.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InventoryFilter
type InventoryFilter struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The name of the filter key.
//
// Key is a required field
Key *string `min:"1" type:"string" required:"true"`
// The type of filter. Valid values include the following: "Equal"|"NotEqual"|"BeginWith"|"LessThan"|"GreaterThan"
Type *string `type:"string" enum:"InventoryQueryOperatorType"`
// Inventory filter values. Example: inventory filter where instance IDs are
// specified as values Key=AWS:InstanceInformation.InstanceId,Values= i-a12b3c4d5e6g,
// i-1a2b3c4d5e6,Type=Equal
//
// Values is a required field
Values []*string `locationNameList:"FilterValue" min:"1" type:"list" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InventoryFilter) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InventoryFilter) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *InventoryFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "InventoryFilter"}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
}
if s.Key != nil && len(*s.Key) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Key", 1))
}
if s.Values == nil {
invalidParams.Add(request.NewErrParamRequired("Values"))
}
if s.Values != nil && len(s.Values) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Values", 1))
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetKey sets the Key field's value.
func (s *InventoryFilter) SetKey(v string) *InventoryFilter {
s.Key = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetType sets the Type field's value.
func (s *InventoryFilter) SetType(v string) *InventoryFilter {
s.Type = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetValues sets the Values field's value.
func (s *InventoryFilter) SetValues(v []*string) *InventoryFilter {
s.Values = v
return s
}
2016-12-02 15:37:53 +01:00
// Information collected from managed instances based on your inventory policy
// document
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InventoryItem
type InventoryItem struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The time the inventory information was collected.
//
// CaptureTime is a required field
CaptureTime *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The inventory data of the inventory type.
Content []map[string]*string `type:"list"`
2016-12-02 15:37:53 +01:00
// MD5 hash of the inventory item type contents. The content hash is used to
// determine whether to update inventory information. The PutInventory API does
// not update the inventory item type contents if the MD5 hash has not changed
// since last update.
ContentHash *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The schema version for the inventory item.
//
// SchemaVersion is a required field
SchemaVersion *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The name of the inventory type. Default inventory item type names start with
// AWS. Custom inventory type names will start with Custom. Default inventory
// item types include the following: AWS:AWSComponent, AWS:Application, AWS:InstanceInformation,
// AWS:Network, and AWS:WindowsUpdate.
//
// TypeName is a required field
TypeName *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InventoryItem) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InventoryItem) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *InventoryItem) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "InventoryItem"}
if s.CaptureTime == nil {
invalidParams.Add(request.NewErrParamRequired("CaptureTime"))
}
if s.SchemaVersion == nil {
invalidParams.Add(request.NewErrParamRequired("SchemaVersion"))
}
if s.TypeName == nil {
invalidParams.Add(request.NewErrParamRequired("TypeName"))
}
if s.TypeName != nil && len(*s.TypeName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("TypeName", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetCaptureTime sets the CaptureTime field's value.
func (s *InventoryItem) SetCaptureTime(v string) *InventoryItem {
s.CaptureTime = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetContent sets the Content field's value.
func (s *InventoryItem) SetContent(v []map[string]*string) *InventoryItem {
s.Content = v
2016-12-02 15:37:53 +01:00
return s
}
// SetContentHash sets the ContentHash field's value.
func (s *InventoryItem) SetContentHash(v string) *InventoryItem {
s.ContentHash = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetSchemaVersion sets the SchemaVersion field's value.
func (s *InventoryItem) SetSchemaVersion(v string) *InventoryItem {
s.SchemaVersion = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetTypeName sets the TypeName field's value.
func (s *InventoryItem) SetTypeName(v string) *InventoryItem {
s.TypeName = &v
2016-12-02 15:37:53 +01:00
return s
}
// Attributes are the entries within the inventory item content. It contains
// name and value.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InventoryItemAttribute
type InventoryItemAttribute struct {
_ struct{} `type:"structure"`
// The data type of the inventory item attribute.
//
// DataType is a required field
DataType *string `type:"string" required:"true" enum:"InventoryAttributeDataType"`
// Name of the inventory item attribute.
//
// Name is a required field
Name *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InventoryItemAttribute) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s InventoryItemAttribute) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// SetDataType sets the DataType field's value.
func (s *InventoryItemAttribute) SetDataType(v string) *InventoryItemAttribute {
s.DataType = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *InventoryItemAttribute) SetName(v string) *InventoryItemAttribute {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// The inventory item schema definition. Users can use this to compose inventory
// query filters.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InventoryItemSchema
type InventoryItemSchema struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The schema attributes for inventory. This contains data type and attribute
// name.
//
// Attributes is a required field
Attributes []*InventoryItemAttribute `locationNameList:"Attribute" min:"1" type:"list" required:"true"`
2016-12-02 15:37:53 +01:00
// The name of the inventory type. Default inventory item type names start with
// AWS. Custom inventory type names will start with Custom. Default inventory
// item types include the following: AWS:AWSComponent, AWS:Application, AWS:InstanceInformation,
// AWS:Network, and AWS:WindowsUpdate.
//
// TypeName is a required field
TypeName *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The schema version for the inventory item.
Version *string `type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s InventoryItemSchema) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InventoryItemSchema) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetAttributes sets the Attributes field's value.
func (s *InventoryItemSchema) SetAttributes(v []*InventoryItemAttribute) *InventoryItemSchema {
s.Attributes = v
2016-12-02 15:37:53 +01:00
return s
}
// SetTypeName sets the TypeName field's value.
func (s *InventoryItemSchema) SetTypeName(v string) *InventoryItemSchema {
s.TypeName = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetVersion sets the Version field's value.
func (s *InventoryItemSchema) SetVersion(v string) *InventoryItemSchema {
s.Version = &v
2016-12-02 15:37:53 +01:00
return s
}
// Inventory query results.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InventoryResultEntity
type InventoryResultEntity struct {
_ struct{} `type:"structure"`
// The data section in the inventory result entity json.
Data map[string]*InventoryResultItem `type:"map"`
// ID of the inventory result entity. For example, for managed instance inventory
// the result will be the managed instance ID. For EC2 instance inventory, the
// result will be the instance ID.
Id *string `type:"string"`
}
// String returns the string representation
func (s InventoryResultEntity) String() string {
return awsutil.Prettify(s)
2016-11-19 19:41:01 +01:00
}
// GoString returns the string representation
func (s InventoryResultEntity) GoString() string {
return s.String()
2016-11-19 19:41:01 +01:00
}
// SetData sets the Data field's value.
func (s *InventoryResultEntity) SetData(v map[string]*InventoryResultItem) *InventoryResultEntity {
s.Data = v
2016-11-19 19:41:01 +01:00
return s
}
// SetId sets the Id field's value.
func (s *InventoryResultEntity) SetId(v string) *InventoryResultEntity {
s.Id = &v
2016-12-02 15:37:53 +01:00
return s
}
// The inventory result item.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InventoryResultItem
type InventoryResultItem struct {
_ struct{} `type:"structure"`
// The time inventory item data was captured.
CaptureTime *string `type:"string"`
// Contains all the inventory data of the item type. Results include attribute
// names and values.
//
// Content is a required field
Content []map[string]*string `type:"list" required:"true"`
// MD5 hash of the inventory item type contents. The content hash is used to
// determine whether to update inventory information. The PutInventory API does
// not update the inventory item type contents if the MD5 hash has not changed
// since last update.
ContentHash *string `type:"string"`
// The schema version for the inventory result item/
//
// SchemaVersion is a required field
SchemaVersion *string `type:"string" required:"true"`
// The name of the inventory result item type.
//
// TypeName is a required field
TypeName *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s InventoryResultItem) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s InventoryResultItem) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// SetCaptureTime sets the CaptureTime field's value.
func (s *InventoryResultItem) SetCaptureTime(v string) *InventoryResultItem {
s.CaptureTime = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetContent sets the Content field's value.
func (s *InventoryResultItem) SetContent(v []map[string]*string) *InventoryResultItem {
s.Content = v
2016-12-02 15:37:53 +01:00
return s
}
// SetContentHash sets the ContentHash field's value.
func (s *InventoryResultItem) SetContentHash(v string) *InventoryResultItem {
s.ContentHash = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetSchemaVersion sets the SchemaVersion field's value.
func (s *InventoryResultItem) SetSchemaVersion(v string) *InventoryResultItem {
s.SchemaVersion = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetTypeName sets the TypeName field's value.
func (s *InventoryResultItem) SetTypeName(v string) *InventoryResultItem {
s.TypeName = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociationsRequest
type ListAssociationsInput struct {
_ struct{} `type:"structure"`
// One or more filters. Use a filter to return a more specific list of results.
AssociationFilterList []*AssociationFilter `locationNameList:"AssociationFilter" min:"1" type:"list"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"1" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
}
// String returns the string representation
func (s ListAssociationsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListAssociationsInput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListAssociationsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ListAssociationsInput"}
if s.AssociationFilterList != nil && len(s.AssociationFilterList) < 1 {
invalidParams.Add(request.NewErrParamMinLen("AssociationFilterList", 1))
2016-12-02 15:37:53 +01:00
}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
2016-12-02 15:37:53 +01:00
}
if s.AssociationFilterList != nil {
for i, v := range s.AssociationFilterList {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "AssociationFilterList", i), err.(request.ErrInvalidParams))
}
}
2016-12-02 15:37:53 +01:00
}
2016-11-19 19:41:01 +01:00
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
// SetAssociationFilterList sets the AssociationFilterList field's value.
func (s *ListAssociationsInput) SetAssociationFilterList(v []*AssociationFilter) *ListAssociationsInput {
s.AssociationFilterList = v
2016-11-19 19:41:01 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *ListAssociationsInput) SetMaxResults(v int64) *ListAssociationsInput {
s.MaxResults = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListAssociationsInput) SetNextToken(v string) *ListAssociationsInput {
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociationsResult
type ListAssociationsOutput struct {
_ struct{} `type:"structure"`
// The associations.
Associations []*Association `locationNameList:"Association" type:"list"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
}
// String returns the string representation
func (s ListAssociationsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListAssociationsOutput) GoString() string {
return s.String()
}
// SetAssociations sets the Associations field's value.
func (s *ListAssociationsOutput) SetAssociations(v []*Association) *ListAssociationsOutput {
s.Associations = v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListAssociationsOutput) SetNextToken(v string) *ListAssociationsOutput {
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommandInvocationsRequest
type ListCommandInvocationsInput struct {
_ struct{} `type:"structure"`
// (Optional) The invocations for a specific command ID.
CommandId *string `min:"36" type:"string"`
// (Optional) If set this returns the response of the command executions and
// any command output. By default this is set to False.
Details *bool `type:"boolean"`
// (Optional) One or more filters. Use a filter to return a more specific list
// of results.
Filters []*CommandFilter `min:"1" type:"list"`
// (Optional) The command execution details for a specific instance ID.
InstanceId *string `type:"string"`
// (Optional) The maximum number of items to return for this call. The call
// also returns a token that you can specify in a subsequent call to get the
// next set of results.
MaxResults *int64 `min:"1" type:"integer"`
// (Optional) The token for the next set of items to return. (You received this
// token from a previous call.)
NextToken *string `type:"string"`
}
// String returns the string representation
func (s ListCommandInvocationsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListCommandInvocationsInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListCommandInvocationsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ListCommandInvocationsInput"}
if s.CommandId != nil && len(*s.CommandId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("CommandId", 36))
}
if s.Filters != nil && len(s.Filters) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Filters", 1))
}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
2016-12-02 15:37:53 +01:00
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetCommandId sets the CommandId field's value.
func (s *ListCommandInvocationsInput) SetCommandId(v string) *ListCommandInvocationsInput {
s.CommandId = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetDetails sets the Details field's value.
func (s *ListCommandInvocationsInput) SetDetails(v bool) *ListCommandInvocationsInput {
s.Details = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetFilters sets the Filters field's value.
func (s *ListCommandInvocationsInput) SetFilters(v []*CommandFilter) *ListCommandInvocationsInput {
s.Filters = v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *ListCommandInvocationsInput) SetInstanceId(v string) *ListCommandInvocationsInput {
s.InstanceId = &v
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *ListCommandInvocationsInput) SetMaxResults(v int64) *ListCommandInvocationsInput {
s.MaxResults = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListCommandInvocationsInput) SetNextToken(v string) *ListCommandInvocationsInput {
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommandInvocationsResult
type ListCommandInvocationsOutput struct {
_ struct{} `type:"structure"`
// (Optional) A list of all invocations.
CommandInvocations []*CommandInvocation `type:"list"`
// (Optional) The token for the next set of items to return. (You received this
// token from a previous call.)
NextToken *string `type:"string"`
}
// String returns the string representation
func (s ListCommandInvocationsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListCommandInvocationsOutput) GoString() string {
return s.String()
}
// SetCommandInvocations sets the CommandInvocations field's value.
func (s *ListCommandInvocationsOutput) SetCommandInvocations(v []*CommandInvocation) *ListCommandInvocationsOutput {
s.CommandInvocations = v
2016-11-19 19:41:01 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListCommandInvocationsOutput) SetNextToken(v string) *ListCommandInvocationsOutput {
s.NextToken = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommandsRequest
type ListCommandsInput struct {
_ struct{} `type:"structure"`
// (Optional) If provided, lists only the specified command.
CommandId *string `min:"36" type:"string"`
// (Optional) One or more filters. Use a filter to return a more specific list
// of results.
Filters []*CommandFilter `min:"1" type:"list"`
2016-12-02 15:37:53 +01:00
// (Optional) Lists commands issued against this instance ID.
InstanceId *string `type:"string"`
2016-12-02 15:37:53 +01:00
// (Optional) The maximum number of items to return for this call. The call
// also returns a token that you can specify in a subsequent call to get the
// next set of results.
MaxResults *int64 `min:"1" type:"integer"`
2016-12-02 15:37:53 +01:00
// (Optional) The token for the next set of items to return. (You received this
// token from a previous call.)
NextToken *string `type:"string"`
}
// String returns the string representation
func (s ListCommandsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListCommandsInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListCommandsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ListCommandsInput"}
if s.CommandId != nil && len(*s.CommandId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("CommandId", 36))
}
if s.Filters != nil && len(s.Filters) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Filters", 1))
2016-12-02 15:37:53 +01:00
}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetCommandId sets the CommandId field's value.
func (s *ListCommandsInput) SetCommandId(v string) *ListCommandsInput {
s.CommandId = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetFilters sets the Filters field's value.
func (s *ListCommandsInput) SetFilters(v []*CommandFilter) *ListCommandsInput {
s.Filters = v
2016-11-19 19:41:01 +01:00
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *ListCommandsInput) SetInstanceId(v string) *ListCommandsInput {
s.InstanceId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *ListCommandsInput) SetMaxResults(v int64) *ListCommandsInput {
s.MaxResults = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListCommandsInput) SetNextToken(v string) *ListCommandsInput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommandsResult
type ListCommandsOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// (Optional) The list of commands requested by the user.
Commands []*Command `type:"list"`
2016-12-02 15:37:53 +01:00
// (Optional) The token for the next set of items to return. (You received this
// token from a previous call.)
NextToken *string `type:"string"`
}
// String returns the string representation
func (s ListCommandsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListCommandsOutput) GoString() string {
return s.String()
}
// SetCommands sets the Commands field's value.
func (s *ListCommandsOutput) SetCommands(v []*Command) *ListCommandsOutput {
s.Commands = v
2016-12-02 15:37:53 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListCommandsOutput) SetNextToken(v string) *ListCommandsOutput {
s.NextToken = &v
2016-12-02 15:37:53 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocumentVersionsRequest
type ListDocumentVersionsInput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"1" type:"integer"`
// The name of the document about which you want version information.
2016-12-02 15:37:53 +01:00
//
// Name is a required field
Name *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
}
// String returns the string representation
func (s ListDocumentVersionsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListDocumentVersionsInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListDocumentVersionsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ListDocumentVersionsInput"}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
// SetMaxResults sets the MaxResults field's value.
func (s *ListDocumentVersionsInput) SetMaxResults(v int64) *ListDocumentVersionsInput {
s.MaxResults = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetName sets the Name field's value.
func (s *ListDocumentVersionsInput) SetName(v string) *ListDocumentVersionsInput {
s.Name = &v
return s
}
2016-11-19 19:41:01 +01:00
// SetNextToken sets the NextToken field's value.
func (s *ListDocumentVersionsInput) SetNextToken(v string) *ListDocumentVersionsInput {
s.NextToken = &v
return s
}
2016-12-02 15:37:53 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocumentVersionsResult
type ListDocumentVersionsOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The document versions.
DocumentVersions []*DocumentVersionInfo `min:"1" type:"list"`
2016-12-02 15:37:53 +01:00
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s ListDocumentVersionsOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s ListDocumentVersionsOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
2016-11-19 19:41:01 +01:00
}
// SetDocumentVersions sets the DocumentVersions field's value.
func (s *ListDocumentVersionsOutput) SetDocumentVersions(v []*DocumentVersionInfo) *ListDocumentVersionsOutput {
s.DocumentVersions = v
2016-11-19 19:41:01 +01:00
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListDocumentVersionsOutput) SetNextToken(v string) *ListDocumentVersionsOutput {
s.NextToken = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocumentsRequest
type ListDocumentsInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// One or more filters. Use a filter to return a more specific list of results.
DocumentFilterList []*DocumentFilter `locationNameList:"DocumentFilter" min:"1" type:"list"`
2016-12-02 15:37:53 +01:00
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
MaxResults *int64 `min:"1" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
NextToken *string `type:"string"`
}
// String returns the string representation
func (s ListDocumentsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListDocumentsInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListDocumentsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ListDocumentsInput"}
if s.DocumentFilterList != nil && len(s.DocumentFilterList) < 1 {
invalidParams.Add(request.NewErrParamMinLen("DocumentFilterList", 1))
}
2016-12-02 15:37:53 +01:00
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if s.DocumentFilterList != nil {
for i, v := range s.DocumentFilterList {
2016-12-02 15:37:53 +01:00
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "DocumentFilterList", i), err.(request.ErrInvalidParams))
2016-12-02 15:37:53 +01:00
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
2016-12-02 15:37:53 +01:00
return nil
}
// SetDocumentFilterList sets the DocumentFilterList field's value.
func (s *ListDocumentsInput) SetDocumentFilterList(v []*DocumentFilter) *ListDocumentsInput {
s.DocumentFilterList = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxResults sets the MaxResults field's value.
func (s *ListDocumentsInput) SetMaxResults(v int64) *ListDocumentsInput {
2016-12-02 15:37:53 +01:00
s.MaxResults = &v
return s
}
// SetNextToken sets the NextToken field's value.
func (s *ListDocumentsInput) SetNextToken(v string) *ListDocumentsInput {
2016-12-02 15:37:53 +01:00
s.NextToken = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocumentsResult
type ListDocumentsOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The names of the SSM documents.
DocumentIdentifiers []*DocumentIdentifier `locationNameList:"DocumentIdentifier" type:"list"`
2016-12-02 15:37:53 +01:00
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
NextToken *string `type:"string"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s ListDocumentsOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListDocumentsOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetDocumentIdentifiers sets the DocumentIdentifiers field's value.
func (s *ListDocumentsOutput) SetDocumentIdentifiers(v []*DocumentIdentifier) *ListDocumentsOutput {
s.DocumentIdentifiers = v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetNextToken sets the NextToken field's value.
func (s *ListDocumentsOutput) SetNextToken(v string) *ListDocumentsOutput {
2016-12-02 15:37:53 +01:00
s.NextToken = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListInventoryEntriesRequest
type ListInventoryEntriesInput struct {
_ struct{} `type:"structure"`
// One or more filters. Use a filter to return a more specific list of results.
Filters []*InventoryFilter `locationNameList:"InventoryFilter" min:"1" type:"list"`
// The instance ID for which you want inventory information.
//
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
// The maximum number of items to return for this call. The call also returns
// a token that you can specify in a subsequent call to get the next set of
// results.
2016-12-02 15:37:53 +01:00
MaxResults *int64 `min:"1" type:"integer"`
// The token for the next set of items to return. (You received this token from
// a previous call.)
2016-12-02 15:37:53 +01:00
NextToken *string `type:"string"`
// The type of inventory item for which you want information.
//
// TypeName is a required field
TypeName *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s ListInventoryEntriesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListInventoryEntriesInput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListInventoryEntriesInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ListInventoryEntriesInput"}
2016-12-02 15:37:53 +01:00
if s.Filters != nil && len(s.Filters) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Filters", 1))
}
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
}
2016-12-02 15:37:53 +01:00
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
}
if s.TypeName == nil {
invalidParams.Add(request.NewErrParamRequired("TypeName"))
}
if s.TypeName != nil && len(*s.TypeName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("TypeName", 1))
}
2016-12-02 15:37:53 +01:00
if s.Filters != nil {
for i, v := range s.Filters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// SetFilters sets the Filters field's value.
func (s *ListInventoryEntriesInput) SetFilters(v []*InventoryFilter) *ListInventoryEntriesInput {
2016-12-02 15:37:53 +01:00
s.Filters = v
2016-11-19 19:41:01 +01:00
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *ListInventoryEntriesInput) SetInstanceId(v string) *ListInventoryEntriesInput {
2016-11-19 19:41:01 +01:00
s.InstanceId = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetMaxResults sets the MaxResults field's value.
func (s *ListInventoryEntriesInput) SetMaxResults(v int64) *ListInventoryEntriesInput {
2016-12-02 15:37:53 +01:00
s.MaxResults = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetNextToken sets the NextToken field's value.
func (s *ListInventoryEntriesInput) SetNextToken(v string) *ListInventoryEntriesInput {
2016-12-02 15:37:53 +01:00
s.NextToken = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetTypeName sets the TypeName field's value.
func (s *ListInventoryEntriesInput) SetTypeName(v string) *ListInventoryEntriesInput {
s.TypeName = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListInventoryEntriesResult
type ListInventoryEntriesOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The time that inventory information was collected for the instance(s).
CaptureTime *string `type:"string"`
2016-12-02 15:37:53 +01:00
// A list of inventory items on the instance(s).
Entries []map[string]*string `type:"list"`
// The instance ID targeted by the request to query inventory information.
InstanceId *string `type:"string"`
// The token to use when requesting the next set of items. If there are no additional
// items to return, the string is empty.
2016-12-02 15:37:53 +01:00
NextToken *string `type:"string"`
// The inventory schema version used by the instance(s).
SchemaVersion *string `type:"string"`
// The type of inventory item returned by the request.
TypeName *string `min:"1" type:"string"`
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s ListInventoryEntriesOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListInventoryEntriesOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetCaptureTime sets the CaptureTime field's value.
func (s *ListInventoryEntriesOutput) SetCaptureTime(v string) *ListInventoryEntriesOutput {
s.CaptureTime = &v
return s
}
// SetEntries sets the Entries field's value.
func (s *ListInventoryEntriesOutput) SetEntries(v []map[string]*string) *ListInventoryEntriesOutput {
s.Entries = v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *ListInventoryEntriesOutput) SetInstanceId(v string) *ListInventoryEntriesOutput {
s.InstanceId = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetNextToken sets the NextToken field's value.
func (s *ListInventoryEntriesOutput) SetNextToken(v string) *ListInventoryEntriesOutput {
2016-12-02 15:37:53 +01:00
s.NextToken = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetSchemaVersion sets the SchemaVersion field's value.
func (s *ListInventoryEntriesOutput) SetSchemaVersion(v string) *ListInventoryEntriesOutput {
s.SchemaVersion = &v
return s
}
// SetTypeName sets the TypeName field's value.
func (s *ListInventoryEntriesOutput) SetTypeName(v string) *ListInventoryEntriesOutput {
s.TypeName = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListTagsForResourceRequest
type ListTagsForResourceInput struct {
_ struct{} `type:"structure"`
// The resource ID for which you want to see a list of tags.
//
// ResourceId is a required field
ResourceId *string `type:"string" required:"true"`
// Returns a list of tags for a specific resource type.
//
// ResourceType is a required field
ResourceType *string `type:"string" required:"true" enum:"ResourceTypeForTagging"`
}
// String returns the string representation
func (s ListTagsForResourceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListTagsForResourceInput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListTagsForResourceInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ListTagsForResourceInput"}
if s.ResourceId == nil {
invalidParams.Add(request.NewErrParamRequired("ResourceId"))
2016-12-02 15:37:53 +01:00
}
if s.ResourceType == nil {
invalidParams.Add(request.NewErrParamRequired("ResourceType"))
2016-12-02 15:37:53 +01:00
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetResourceId sets the ResourceId field's value.
func (s *ListTagsForResourceInput) SetResourceId(v string) *ListTagsForResourceInput {
s.ResourceId = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetResourceType sets the ResourceType field's value.
func (s *ListTagsForResourceInput) SetResourceType(v string) *ListTagsForResourceInput {
s.ResourceType = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListTagsForResourceResult
type ListTagsForResourceOutput struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// A list of tags.
TagList []*Tag `type:"list"`
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s ListTagsForResourceOutput) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s ListTagsForResourceOutput) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// SetTagList sets the TagList field's value.
func (s *ListTagsForResourceOutput) SetTagList(v []*Tag) *ListTagsForResourceOutput {
s.TagList = v
2016-11-19 19:41:01 +01:00
return s
}
// Information about an Amazon S3 bucket to write instance-level logs to.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/LoggingInfo
type LoggingInfo struct {
_ struct{} `type:"structure"`
// The name of an Amazon S3 bucket where execution logs are stored .
2016-10-17 23:21:08 +02:00
//
// S3BucketName is a required field
S3BucketName *string `min:"3" type:"string" required:"true"`
// (Optional) The Amazon S3 bucket subfolder.
S3KeyPrefix *string `type:"string"`
// The region where the Amazon S3 bucket is located.
//
// S3Region is a required field
S3Region *string `min:"3" type:"string" required:"true"`
}
// String returns the string representation
func (s LoggingInfo) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s LoggingInfo) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *LoggingInfo) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "LoggingInfo"}
if s.S3BucketName == nil {
invalidParams.Add(request.NewErrParamRequired("S3BucketName"))
}
if s.S3BucketName != nil && len(*s.S3BucketName) < 3 {
invalidParams.Add(request.NewErrParamMinLen("S3BucketName", 3))
}
if s.S3Region == nil {
invalidParams.Add(request.NewErrParamRequired("S3Region"))
}
if s.S3Region != nil && len(*s.S3Region) < 3 {
invalidParams.Add(request.NewErrParamMinLen("S3Region", 3))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetS3BucketName sets the S3BucketName field's value.
func (s *LoggingInfo) SetS3BucketName(v string) *LoggingInfo {
s.S3BucketName = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetS3KeyPrefix sets the S3KeyPrefix field's value.
func (s *LoggingInfo) SetS3KeyPrefix(v string) *LoggingInfo {
s.S3KeyPrefix = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetS3Region sets the S3Region field's value.
func (s *LoggingInfo) SetS3Region(v string) *LoggingInfo {
s.S3Region = &v
2016-11-19 19:41:01 +01:00
return s
}
// Describes the information about an execution of a Maintenance Window.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowExecution
type MaintenanceWindowExecution struct {
_ struct{} `type:"structure"`
// The time the execution finished.
EndTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The time the execution started.
StartTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The status of the execution.
Status *string `type:"string" enum:"MaintenanceWindowExecutionStatus"`
// The details explaining the Status. Only available for certain status values.
StatusDetails *string `type:"string"`
// The ID of the Maintenance Window execution.
WindowExecutionId *string `min:"36" type:"string"`
// The ID of the Maintenance Window.
WindowId *string `min:"20" type:"string"`
}
// String returns the string representation
func (s MaintenanceWindowExecution) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s MaintenanceWindowExecution) GoString() string {
return s.String()
}
// SetEndTime sets the EndTime field's value.
func (s *MaintenanceWindowExecution) SetEndTime(v time.Time) *MaintenanceWindowExecution {
s.EndTime = &v
return s
}
// SetStartTime sets the StartTime field's value.
func (s *MaintenanceWindowExecution) SetStartTime(v time.Time) *MaintenanceWindowExecution {
s.StartTime = &v
return s
}
// SetStatus sets the Status field's value.
func (s *MaintenanceWindowExecution) SetStatus(v string) *MaintenanceWindowExecution {
s.Status = &v
return s
}
// SetStatusDetails sets the StatusDetails field's value.
func (s *MaintenanceWindowExecution) SetStatusDetails(v string) *MaintenanceWindowExecution {
s.StatusDetails = &v
return s
}
// SetWindowExecutionId sets the WindowExecutionId field's value.
func (s *MaintenanceWindowExecution) SetWindowExecutionId(v string) *MaintenanceWindowExecution {
s.WindowExecutionId = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetWindowId sets the WindowId field's value.
func (s *MaintenanceWindowExecution) SetWindowId(v string) *MaintenanceWindowExecution {
s.WindowId = &v
2016-11-19 19:41:01 +01:00
return s
}
// Information about a task execution performed as part of a Maintenance Window
// execution.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowExecutionTaskIdentity
type MaintenanceWindowExecutionTaskIdentity struct {
_ struct{} `type:"structure"`
// The time the task execution finished.
EndTime *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// The time the task execution started.
StartTime *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// The status of the task execution.
Status *string `type:"string" enum:"MaintenanceWindowExecutionStatus"`
// The details explaining the status of the task execution. Only available for
// certain status values.
StatusDetails *string `type:"string"`
// The ARN of the executed task.
TaskArn *string `min:"1" type:"string"`
// The ID of the specific task execution in the Maintenance Window execution.
TaskExecutionId *string `min:"36" type:"string"`
// The type of executed task.
TaskType *string `type:"string" enum:"MaintenanceWindowTaskType"`
// The ID of the Maintenance Window execution that ran the task.
WindowExecutionId *string `min:"36" type:"string"`
}
// String returns the string representation
func (s MaintenanceWindowExecutionTaskIdentity) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s MaintenanceWindowExecutionTaskIdentity) GoString() string {
return s.String()
}
// SetEndTime sets the EndTime field's value.
func (s *MaintenanceWindowExecutionTaskIdentity) SetEndTime(v time.Time) *MaintenanceWindowExecutionTaskIdentity {
s.EndTime = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetStartTime sets the StartTime field's value.
func (s *MaintenanceWindowExecutionTaskIdentity) SetStartTime(v time.Time) *MaintenanceWindowExecutionTaskIdentity {
s.StartTime = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetStatus sets the Status field's value.
func (s *MaintenanceWindowExecutionTaskIdentity) SetStatus(v string) *MaintenanceWindowExecutionTaskIdentity {
s.Status = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetStatusDetails sets the StatusDetails field's value.
func (s *MaintenanceWindowExecutionTaskIdentity) SetStatusDetails(v string) *MaintenanceWindowExecutionTaskIdentity {
s.StatusDetails = &v
return s
}
// SetTaskArn sets the TaskArn field's value.
func (s *MaintenanceWindowExecutionTaskIdentity) SetTaskArn(v string) *MaintenanceWindowExecutionTaskIdentity {
s.TaskArn = &v
return s
}
// SetTaskExecutionId sets the TaskExecutionId field's value.
func (s *MaintenanceWindowExecutionTaskIdentity) SetTaskExecutionId(v string) *MaintenanceWindowExecutionTaskIdentity {
s.TaskExecutionId = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetTaskType sets the TaskType field's value.
func (s *MaintenanceWindowExecutionTaskIdentity) SetTaskType(v string) *MaintenanceWindowExecutionTaskIdentity {
s.TaskType = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetWindowExecutionId sets the WindowExecutionId field's value.
func (s *MaintenanceWindowExecutionTaskIdentity) SetWindowExecutionId(v string) *MaintenanceWindowExecutionTaskIdentity {
s.WindowExecutionId = &v
2016-11-19 19:41:01 +01:00
return s
}
// Describes the information about a task invocation for a particular target
// as part of a task execution performed as part of a Maintenance Window execution.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowExecutionTaskInvocationIdentity
type MaintenanceWindowExecutionTaskInvocationIdentity struct {
_ struct{} `type:"structure"`
// The time the invocation finished.
EndTime *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// The ID of the action performed in the service that actually handled the task
// invocation. If the task type is RUN_COMMAND, this value is the command ID.
ExecutionId *string `type:"string"`
// The ID of the task invocation.
InvocationId *string `min:"36" type:"string"`
// User-provided value that was specified when the target was registered with
// the Maintenance Window. This was also included in any CloudWatch events raised
// during the task invocation.
OwnerInformation *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// The parameters that were provided for the invocation when it was executed.
Parameters *string `type:"string"`
// The time the invocation started.
StartTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// The status of the task invocation.
Status *string `type:"string" enum:"MaintenanceWindowExecutionStatus"`
// The details explaining the status of the task invocation. Only available
// for certain Status values.
StatusDetails *string `type:"string"`
// The ID of the specific task execution in the Maintenance Window execution.
TaskExecutionId *string `min:"36" type:"string"`
// The ID of the Maintenance Window execution that ran the task.
WindowExecutionId *string `min:"36" type:"string"`
// The ID of the target definition in this Maintenance Window the invocation
// was performed for.
WindowTargetId *string `type:"string"`
}
// String returns the string representation
func (s MaintenanceWindowExecutionTaskInvocationIdentity) String() string {
return awsutil.Prettify(s)
2016-12-02 15:37:53 +01:00
}
// GoString returns the string representation
func (s MaintenanceWindowExecutionTaskInvocationIdentity) GoString() string {
return s.String()
2016-11-19 19:41:01 +01:00
}
// SetEndTime sets the EndTime field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetEndTime(v time.Time) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.EndTime = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetExecutionId sets the ExecutionId field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetExecutionId(v string) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.ExecutionId = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetInvocationId sets the InvocationId field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetInvocationId(v string) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.InvocationId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetOwnerInformation sets the OwnerInformation field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetOwnerInformation(v string) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.OwnerInformation = &v
return s
}
// SetParameters sets the Parameters field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetParameters(v string) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.Parameters = &v
return s
}
// SetStartTime sets the StartTime field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetStartTime(v time.Time) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.StartTime = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetStatus sets the Status field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetStatus(v string) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.Status = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetStatusDetails sets the StatusDetails field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetStatusDetails(v string) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.StatusDetails = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetTaskExecutionId sets the TaskExecutionId field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetTaskExecutionId(v string) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.TaskExecutionId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowExecutionId sets the WindowExecutionId field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetWindowExecutionId(v string) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.WindowExecutionId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowTargetId sets the WindowTargetId field's value.
func (s *MaintenanceWindowExecutionTaskInvocationIdentity) SetWindowTargetId(v string) *MaintenanceWindowExecutionTaskInvocationIdentity {
s.WindowTargetId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Filter used in the request.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowFilter
type MaintenanceWindowFilter struct {
_ struct{} `type:"structure"`
// The name of the filter.
Key *string `min:"1" type:"string"`
// The filter values.
Values []*string `type:"list"`
}
// String returns the string representation
func (s MaintenanceWindowFilter) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s MaintenanceWindowFilter) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *MaintenanceWindowFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "MaintenanceWindowFilter"}
if s.Key != nil && len(*s.Key) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Key", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetKey sets the Key field's value.
func (s *MaintenanceWindowFilter) SetKey(v string) *MaintenanceWindowFilter {
s.Key = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetValues sets the Values field's value.
func (s *MaintenanceWindowFilter) SetValues(v []*string) *MaintenanceWindowFilter {
s.Values = v
2016-11-19 19:41:01 +01:00
return s
}
// Information about the Maintenance Window.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowIdentity
type MaintenanceWindowIdentity struct {
_ struct{} `type:"structure"`
// The number of hours before the end of the Maintenance Window that Systems
// Manager stops scheduling new tasks for execution.
Cutoff *int64 `type:"integer"`
2016-11-19 19:41:01 +01:00
// The duration of the Maintenance Window in hours.
Duration *int64 `min:"1" type:"integer"`
// Whether the Maintenance Window is enabled.
Enabled *bool `type:"boolean"`
2016-12-02 15:37:53 +01:00
// The name of the Maintenance Window.
Name *string `min:"3" type:"string"`
2016-12-02 15:37:53 +01:00
// The ID of the Maintenance Window.
WindowId *string `min:"20" type:"string"`
}
// String returns the string representation
func (s MaintenanceWindowIdentity) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s MaintenanceWindowIdentity) GoString() string {
return s.String()
}
// SetCutoff sets the Cutoff field's value.
func (s *MaintenanceWindowIdentity) SetCutoff(v int64) *MaintenanceWindowIdentity {
s.Cutoff = &v
return s
}
// SetDuration sets the Duration field's value.
func (s *MaintenanceWindowIdentity) SetDuration(v int64) *MaintenanceWindowIdentity {
s.Duration = &v
return s
}
// SetEnabled sets the Enabled field's value.
func (s *MaintenanceWindowIdentity) SetEnabled(v bool) *MaintenanceWindowIdentity {
s.Enabled = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetName sets the Name field's value.
func (s *MaintenanceWindowIdentity) SetName(v string) *MaintenanceWindowIdentity {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowId sets the WindowId field's value.
func (s *MaintenanceWindowIdentity) SetWindowId(v string) *MaintenanceWindowIdentity {
s.WindowId = &v
2016-12-02 15:37:53 +01:00
return s
}
// The target registered with the Maintenance Window.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowTarget
type MaintenanceWindowTarget struct {
_ struct{} `type:"structure"`
// User-provided value that will be included in any CloudWatch events raised
// while running tasks for these targets in this Maintenance Window.
OwnerInformation *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// The type of target.
ResourceType *string `type:"string" enum:"MaintenanceWindowResourceType"`
2016-12-02 15:37:53 +01:00
// The targets (either instances or tags). Instances are specified using Key=instanceids,Values=<instanceid1>,<instanceid2>.
// Tags are specified using Key=<tag name>,Values=<tag value>.
Targets []*Target `type:"list"`
2016-12-02 15:37:53 +01:00
// The Maintenance Window ID where the target is registered.
2016-12-02 15:37:53 +01:00
WindowId *string `min:"20" type:"string"`
// The ID of the target.
WindowTargetId *string `min:"36" type:"string"`
}
// String returns the string representation
func (s MaintenanceWindowTarget) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s MaintenanceWindowTarget) GoString() string {
return s.String()
}
// SetOwnerInformation sets the OwnerInformation field's value.
func (s *MaintenanceWindowTarget) SetOwnerInformation(v string) *MaintenanceWindowTarget {
s.OwnerInformation = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetResourceType sets the ResourceType field's value.
func (s *MaintenanceWindowTarget) SetResourceType(v string) *MaintenanceWindowTarget {
s.ResourceType = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetTargets sets the Targets field's value.
func (s *MaintenanceWindowTarget) SetTargets(v []*Target) *MaintenanceWindowTarget {
s.Targets = v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowId sets the WindowId field's value.
func (s *MaintenanceWindowTarget) SetWindowId(v string) *MaintenanceWindowTarget {
s.WindowId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowTargetId sets the WindowTargetId field's value.
func (s *MaintenanceWindowTarget) SetWindowTargetId(v string) *MaintenanceWindowTarget {
s.WindowTargetId = &v
2016-12-02 15:37:53 +01:00
return s
}
// Information about a task defined for a Maintenance Window.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowTask
type MaintenanceWindowTask struct {
_ struct{} `type:"structure"`
// Information about an Amazon S3 bucket to write task-level logs to.
LoggingInfo *LoggingInfo `type:"structure"`
2016-12-02 15:37:53 +01:00
// The maximum number of targets this task can be run for in parallel.
MaxConcurrency *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// The maximum number of errors allowed before this task stops being scheduled.
MaxErrors *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// The priority of the task in the Maintenance Window, the lower the number
// the higher the priority. Tasks in a Maintenance Window are scheduled in priority
// order with tasks that have the same priority scheduled in parallel.
Priority *int64 `type:"integer"`
2016-12-02 15:37:53 +01:00
// The role that should be assumed when executing the task
ServiceRoleArn *string `type:"string"`
// The targets (either instances or tags). Instances are specified using Key=instanceids,Values=<instanceid1>,<instanceid2>.
// Tags are specified using Key=<tag name>,Values=<tag value>.
Targets []*Target `type:"list"`
// The ARN of the task to execute.
2016-12-02 15:37:53 +01:00
TaskArn *string `min:"1" type:"string"`
// The parameters that should be passed to the task when it is executed.
TaskParameters map[string]*MaintenanceWindowTaskParameterValueExpression `type:"map"`
2016-12-02 15:37:53 +01:00
// The type of task.
Type *string `type:"string" enum:"MaintenanceWindowTaskType"`
2016-12-02 15:37:53 +01:00
// The Maintenance Window ID where the task is registered.
WindowId *string `min:"20" type:"string"`
// The task ID.
WindowTaskId *string `min:"36" type:"string"`
}
// String returns the string representation
func (s MaintenanceWindowTask) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s MaintenanceWindowTask) GoString() string {
return s.String()
}
// SetLoggingInfo sets the LoggingInfo field's value.
func (s *MaintenanceWindowTask) SetLoggingInfo(v *LoggingInfo) *MaintenanceWindowTask {
s.LoggingInfo = v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxConcurrency sets the MaxConcurrency field's value.
func (s *MaintenanceWindowTask) SetMaxConcurrency(v string) *MaintenanceWindowTask {
s.MaxConcurrency = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetMaxErrors sets the MaxErrors field's value.
func (s *MaintenanceWindowTask) SetMaxErrors(v string) *MaintenanceWindowTask {
s.MaxErrors = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetPriority sets the Priority field's value.
func (s *MaintenanceWindowTask) SetPriority(v int64) *MaintenanceWindowTask {
s.Priority = &v
return s
}
// SetServiceRoleArn sets the ServiceRoleArn field's value.
func (s *MaintenanceWindowTask) SetServiceRoleArn(v string) *MaintenanceWindowTask {
s.ServiceRoleArn = &v
return s
}
// SetTargets sets the Targets field's value.
func (s *MaintenanceWindowTask) SetTargets(v []*Target) *MaintenanceWindowTask {
s.Targets = v
2016-12-02 15:37:53 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetTaskArn sets the TaskArn field's value.
func (s *MaintenanceWindowTask) SetTaskArn(v string) *MaintenanceWindowTask {
2016-12-02 15:37:53 +01:00
s.TaskArn = &v
return s
}
// SetTaskParameters sets the TaskParameters field's value.
func (s *MaintenanceWindowTask) SetTaskParameters(v map[string]*MaintenanceWindowTaskParameterValueExpression) *MaintenanceWindowTask {
s.TaskParameters = v
2016-12-02 15:37:53 +01:00
return s
}
// SetType sets the Type field's value.
func (s *MaintenanceWindowTask) SetType(v string) *MaintenanceWindowTask {
s.Type = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowId sets the WindowId field's value.
func (s *MaintenanceWindowTask) SetWindowId(v string) *MaintenanceWindowTask {
s.WindowId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetWindowTaskId sets the WindowTaskId field's value.
func (s *MaintenanceWindowTask) SetWindowTaskId(v string) *MaintenanceWindowTask {
s.WindowTaskId = &v
return s
}
// Defines the values for a task parameter.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowTaskParameterValueExpression
type MaintenanceWindowTaskParameterValueExpression struct {
_ struct{} `type:"structure"`
// This field contains an array of 0 or more strings, each 1 to 255 characters
// in length.
Values []*string `type:"list"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s MaintenanceWindowTaskParameterValueExpression) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s MaintenanceWindowTaskParameterValueExpression) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetValues sets the Values field's value.
func (s *MaintenanceWindowTaskParameterValueExpression) SetValues(v []*string) *MaintenanceWindowTaskParameterValueExpression {
s.Values = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ModifyDocumentPermissionRequest
type ModifyDocumentPermissionInput struct {
_ struct{} `type:"structure"`
// The AWS user accounts that should have access to the document. The account
// IDs can either be a group of account IDs or All.
AccountIdsToAdd []*string `locationNameList:"AccountId" type:"list"`
// The AWS user accounts that should no longer have access to the document.
// The AWS user account can either be a group of account IDs or All. This action
// has a higher priority than AccountIdsToAdd. If you specify an account ID
// to add and the same ID to remove, the system removes access to the document.
AccountIdsToRemove []*string `locationNameList:"AccountId" type:"list"`
// The name of the document that you want to share.
//
// Name is a required field
Name *string `type:"string" required:"true"`
// The permission type for the document. The permission type can be Share.
//
// PermissionType is a required field
PermissionType *string `type:"string" required:"true" enum:"DocumentPermissionType"`
}
// String returns the string representation
func (s ModifyDocumentPermissionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ModifyDocumentPermissionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ModifyDocumentPermissionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ModifyDocumentPermissionInput"}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if s.PermissionType == nil {
invalidParams.Add(request.NewErrParamRequired("PermissionType"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetAccountIdsToAdd sets the AccountIdsToAdd field's value.
func (s *ModifyDocumentPermissionInput) SetAccountIdsToAdd(v []*string) *ModifyDocumentPermissionInput {
s.AccountIdsToAdd = v
return s
}
// SetAccountIdsToRemove sets the AccountIdsToRemove field's value.
func (s *ModifyDocumentPermissionInput) SetAccountIdsToRemove(v []*string) *ModifyDocumentPermissionInput {
s.AccountIdsToRemove = v
return s
}
// SetName sets the Name field's value.
func (s *ModifyDocumentPermissionInput) SetName(v string) *ModifyDocumentPermissionInput {
s.Name = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetPermissionType sets the PermissionType field's value.
func (s *ModifyDocumentPermissionInput) SetPermissionType(v string) *ModifyDocumentPermissionInput {
s.PermissionType = &v
return s
}
2016-12-02 15:37:53 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ModifyDocumentPermissionResponse
type ModifyDocumentPermissionOutput struct {
_ struct{} `type:"structure"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s ModifyDocumentPermissionOutput) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s ModifyDocumentPermissionOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Configurations for sending notifications.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/NotificationConfig
type NotificationConfig struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// An Amazon Resource Name (ARN) for a Simple Notification Service (SNS) topic.
// Run Command pushes notifications about command status changes to this topic.
NotificationArn *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The different events for which you can receive notifications. These events
// include the following: All (events), InProgress, Success, TimedOut, Cancelled,
// Failed. To learn more about these events, see Monitoring Commands (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitor-commands.html)
// in the Amazon Elastic Compute Cloud User Guide .
NotificationEvents []*string `type:"list"`
// Command: Receive notification when the status of a command changes. Invocation:
// For commands sent to multiple instances, receive notification on a per-instance
// basis when the status of a command changes.
NotificationType *string `type:"string" enum:"NotificationType"`
}
// String returns the string representation
func (s NotificationConfig) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s NotificationConfig) GoString() string {
return s.String()
}
// SetNotificationArn sets the NotificationArn field's value.
func (s *NotificationConfig) SetNotificationArn(v string) *NotificationConfig {
s.NotificationArn = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetNotificationEvents sets the NotificationEvents field's value.
func (s *NotificationConfig) SetNotificationEvents(v []*string) *NotificationConfig {
s.NotificationEvents = v
2016-11-19 19:41:01 +01:00
return s
}
// SetNotificationType sets the NotificationType field's value.
func (s *NotificationConfig) SetNotificationType(v string) *NotificationConfig {
s.NotificationType = &v
2016-12-02 15:37:53 +01:00
return s
}
// An Amazon EC2 Systems Manager parameter in Parameter Store.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Parameter
type Parameter struct {
_ struct{} `type:"structure"`
// The name of the parameter.
Name *string `min:"1" type:"string"`
// The type of parameter. Valid values include the following: String, String
// list, Secure string.
Type *string `type:"string" enum:"ParameterType"`
// The parameter value.
Value *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s Parameter) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Parameter) GoString() string {
return s.String()
}
// SetName sets the Name field's value.
func (s *Parameter) SetName(v string) *Parameter {
s.Name = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetType sets the Type field's value.
func (s *Parameter) SetType(v string) *Parameter {
s.Type = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetValue sets the Value field's value.
func (s *Parameter) SetValue(v string) *Parameter {
s.Value = &v
2016-11-19 19:41:01 +01:00
return s
}
// Information about parameter usage.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterHistory
type ParameterHistory struct {
_ struct{} `type:"structure"`
// Information about the parameter.
Description *string `min:"1" type:"string"`
// The ID of the query key used for this parameter.
KeyId *string `min:"1" type:"string"`
// Date the parameter was last changed or updated.
LastModifiedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// Amazon Resource Name (ARN) of the AWS user who last changed the parameter.
LastModifiedUser *string `type:"string"`
// The name of the parameter.
Name *string `min:"1" type:"string"`
// The type of parameter used.
Type *string `type:"string" enum:"ParameterType"`
// The parameter value.
Value *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ParameterHistory) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ParameterHistory) GoString() string {
return s.String()
}
// SetDescription sets the Description field's value.
func (s *ParameterHistory) SetDescription(v string) *ParameterHistory {
s.Description = &v
return s
}
// SetKeyId sets the KeyId field's value.
func (s *ParameterHistory) SetKeyId(v string) *ParameterHistory {
s.KeyId = &v
return s
}
// SetLastModifiedDate sets the LastModifiedDate field's value.
func (s *ParameterHistory) SetLastModifiedDate(v time.Time) *ParameterHistory {
s.LastModifiedDate = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetLastModifiedUser sets the LastModifiedUser field's value.
func (s *ParameterHistory) SetLastModifiedUser(v string) *ParameterHistory {
s.LastModifiedUser = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetName sets the Name field's value.
func (s *ParameterHistory) SetName(v string) *ParameterHistory {
s.Name = &v
return s
}
// SetType sets the Type field's value.
func (s *ParameterHistory) SetType(v string) *ParameterHistory {
s.Type = &v
return s
}
// SetValue sets the Value field's value.
func (s *ParameterHistory) SetValue(v string) *ParameterHistory {
s.Value = &v
return s
}
// Metada includes information like the ARN of the last user and the date/time
// the parameter was last used.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterMetadata
type ParameterMetadata struct {
_ struct{} `type:"structure"`
// Description of the parameter actions.
Description *string `min:"1" type:"string"`
// The ID of the query key used for this parameter.
KeyId *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// Date the parameter was last changed or updated.
LastModifiedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
2016-12-02 15:37:53 +01:00
// Amazon Resource Name (ARN) of the AWS user who last changed the parameter.
LastModifiedUser *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The parameter name.
Name *string `min:"1" type:"string"`
// The type of parameter. Valid parameter types include the following: String,
// String list, Secure string.
Type *string `type:"string" enum:"ParameterType"`
}
// String returns the string representation
func (s ParameterMetadata) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ParameterMetadata) GoString() string {
return s.String()
}
// SetDescription sets the Description field's value.
func (s *ParameterMetadata) SetDescription(v string) *ParameterMetadata {
s.Description = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetKeyId sets the KeyId field's value.
func (s *ParameterMetadata) SetKeyId(v string) *ParameterMetadata {
s.KeyId = &v
return s
}
// SetLastModifiedDate sets the LastModifiedDate field's value.
func (s *ParameterMetadata) SetLastModifiedDate(v time.Time) *ParameterMetadata {
s.LastModifiedDate = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetLastModifiedUser sets the LastModifiedUser field's value.
func (s *ParameterMetadata) SetLastModifiedUser(v string) *ParameterMetadata {
s.LastModifiedUser = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetName sets the Name field's value.
func (s *ParameterMetadata) SetName(v string) *ParameterMetadata {
2016-12-02 15:37:53 +01:00
s.Name = &v
return s
}
// SetType sets the Type field's value.
func (s *ParameterMetadata) SetType(v string) *ParameterMetadata {
s.Type = &v
2016-12-02 15:37:53 +01:00
return s
}
// One or more filters. Use a filter to return a more specific list of results.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParametersFilter
type ParametersFilter struct {
_ struct{} `type:"structure"`
// The name of the filter.
Key *string `type:"string" enum:"ParametersFilterKey"`
2016-12-02 15:37:53 +01:00
// The filter values.
//
// Values is a required field
Values []*string `min:"1" type:"list" required:"true"`
}
// String returns the string representation
func (s ParametersFilter) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ParametersFilter) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ParametersFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ParametersFilter"}
if s.Values == nil {
invalidParams.Add(request.NewErrParamRequired("Values"))
}
if s.Values != nil && len(s.Values) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Values", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
// SetKey sets the Key field's value.
func (s *ParametersFilter) SetKey(v string) *ParametersFilter {
s.Key = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetValues sets the Values field's value.
func (s *ParametersFilter) SetValues(v []*string) *ParametersFilter {
s.Values = v
2016-12-02 15:37:53 +01:00
return s
}
// Represents metadata about a patch.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Patch
type Patch struct {
_ struct{} `type:"structure"`
// The classification of the patch (for example, SecurityUpdates, Updates, CriticalUpdates).
Classification *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The URL where more information can be obtained about the patch.
ContentUrl *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The description of the patch.
Description *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The ID of the patch (this is different than the Microsoft Knowledge Base
// ID).
Id *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The Microsoft Knowledge Base ID of the patch.
KbNumber *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The language of the patch if its language-specific.
Language *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The ID of the MSRC bulletin the patch is related to.
MsrcNumber *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The severity of the patch (for example Critical, Important, Moderate).
MsrcSeverity *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The specific product the patch is applicable for (for example, WindowsServer2016).
Product *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The product family the patch is applicable for (for example, Windows).
ProductFamily *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The date the patch was released.
ReleaseDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The title of the patch.
Title *string `type:"string"`
// The name of the vendor providing the patch.
Vendor *string `type:"string"`
}
// String returns the string representation
func (s Patch) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Patch) GoString() string {
return s.String()
}
// SetClassification sets the Classification field's value.
func (s *Patch) SetClassification(v string) *Patch {
s.Classification = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetContentUrl sets the ContentUrl field's value.
func (s *Patch) SetContentUrl(v string) *Patch {
s.ContentUrl = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetDescription sets the Description field's value.
func (s *Patch) SetDescription(v string) *Patch {
s.Description = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetId sets the Id field's value.
func (s *Patch) SetId(v string) *Patch {
s.Id = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetKbNumber sets the KbNumber field's value.
func (s *Patch) SetKbNumber(v string) *Patch {
s.KbNumber = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetLanguage sets the Language field's value.
func (s *Patch) SetLanguage(v string) *Patch {
s.Language = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetMsrcNumber sets the MsrcNumber field's value.
func (s *Patch) SetMsrcNumber(v string) *Patch {
s.MsrcNumber = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetMsrcSeverity sets the MsrcSeverity field's value.
func (s *Patch) SetMsrcSeverity(v string) *Patch {
s.MsrcSeverity = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetProduct sets the Product field's value.
func (s *Patch) SetProduct(v string) *Patch {
s.Product = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetProductFamily sets the ProductFamily field's value.
func (s *Patch) SetProductFamily(v string) *Patch {
s.ProductFamily = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetReleaseDate sets the ReleaseDate field's value.
func (s *Patch) SetReleaseDate(v time.Time) *Patch {
s.ReleaseDate = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetTitle sets the Title field's value.
func (s *Patch) SetTitle(v string) *Patch {
s.Title = &v
return s
}
// SetVendor sets the Vendor field's value.
func (s *Patch) SetVendor(v string) *Patch {
s.Vendor = &v
2016-11-19 19:41:01 +01:00
return s
}
// Defines the basic information about a patch baseline.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchBaselineIdentity
type PatchBaselineIdentity struct {
_ struct{} `type:"structure"`
// The description of the patch baseline.
BaselineDescription *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// The ID of the patch baseline.
BaselineId *string `min:"20" type:"string"`
2016-12-02 15:37:53 +01:00
// The name of the patch baseline.
BaselineName *string `min:"3" type:"string"`
// Whether this is the default baseline.
DefaultBaseline *bool `type:"boolean"`
}
// String returns the string representation
func (s PatchBaselineIdentity) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PatchBaselineIdentity) GoString() string {
return s.String()
}
// SetBaselineDescription sets the BaselineDescription field's value.
func (s *PatchBaselineIdentity) SetBaselineDescription(v string) *PatchBaselineIdentity {
s.BaselineDescription = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetBaselineId sets the BaselineId field's value.
func (s *PatchBaselineIdentity) SetBaselineId(v string) *PatchBaselineIdentity {
s.BaselineId = &v
2016-12-02 15:37:53 +01:00
return s
}
// SetBaselineName sets the BaselineName field's value.
func (s *PatchBaselineIdentity) SetBaselineName(v string) *PatchBaselineIdentity {
s.BaselineName = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetDefaultBaseline sets the DefaultBaseline field's value.
func (s *PatchBaselineIdentity) SetDefaultBaseline(v bool) *PatchBaselineIdentity {
s.DefaultBaseline = &v
2016-11-19 19:41:01 +01:00
return s
}
// Information about the state of a patch on a particular instance as it relates
// to the patch baseline used to patch the instance.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchComplianceData
type PatchComplianceData struct {
_ struct{} `type:"structure"`
// The classification of the patch (for example, SecurityUpdates, Updates, CriticalUpdates).
//
// Classification is a required field
Classification *string `type:"string" required:"true"`
// The date/time the patch was installed on the instance.
//
// InstalledTime is a required field
InstalledTime *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
// The Microsoft Knowledge Base ID of the patch.
//
// KBId is a required field
KBId *string `type:"string" required:"true"`
// The severity of the patch (for example, Critical, Important, Moderate).
//
// Severity is a required field
Severity *string `type:"string" required:"true"`
// The state of the patch on the instance (INSTALLED, INSTALLED_OTHER, MISSING,
// NOT_APPLICABLE or FAILED).
//
// State is a required field
State *string `type:"string" required:"true" enum:"PatchComplianceDataState"`
// The title of the patch.
//
// Title is a required field
Title *string `type:"string" required:"true"`
}
// String returns the string representation
func (s PatchComplianceData) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PatchComplianceData) GoString() string {
return s.String()
}
// SetClassification sets the Classification field's value.
func (s *PatchComplianceData) SetClassification(v string) *PatchComplianceData {
s.Classification = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetInstalledTime sets the InstalledTime field's value.
func (s *PatchComplianceData) SetInstalledTime(v time.Time) *PatchComplianceData {
s.InstalledTime = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetKBId sets the KBId field's value.
func (s *PatchComplianceData) SetKBId(v string) *PatchComplianceData {
s.KBId = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetSeverity sets the Severity field's value.
func (s *PatchComplianceData) SetSeverity(v string) *PatchComplianceData {
s.Severity = &v
return s
}
// SetState sets the State field's value.
func (s *PatchComplianceData) SetState(v string) *PatchComplianceData {
s.State = &v
return s
}
// SetTitle sets the Title field's value.
func (s *PatchComplianceData) SetTitle(v string) *PatchComplianceData {
s.Title = &v
return s
}
2016-12-02 15:37:53 +01:00
// Defines a patch filter.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchFilter
type PatchFilter struct {
_ struct{} `type:"structure"`
// The key for the filter (PRODUCT, CLASSIFICATION, MSRC_SEVERITY, PATCH_ID)
//
// Key is a required field
Key *string `type:"string" required:"true" enum:"PatchFilterKey"`
// The value for the filter key.
//
// Values is a required field
Values []*string `min:"1" type:"list" required:"true"`
}
// String returns the string representation
func (s PatchFilter) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PatchFilter) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *PatchFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PatchFilter"}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
}
if s.Values == nil {
invalidParams.Add(request.NewErrParamRequired("Values"))
}
if s.Values != nil && len(s.Values) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Values", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
// SetKey sets the Key field's value.
func (s *PatchFilter) SetKey(v string) *PatchFilter {
s.Key = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetValues sets the Values field's value.
func (s *PatchFilter) SetValues(v []*string) *PatchFilter {
s.Values = v
2016-12-02 15:37:53 +01:00
return s
}
// A set of patch filters, typically used for approval rules.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchFilterGroup
type PatchFilterGroup struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The set of patch filters that make up the group.
//
// PatchFilters is a required field
PatchFilters []*PatchFilter `type:"list" required:"true"`
}
// String returns the string representation
func (s PatchFilterGroup) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PatchFilterGroup) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *PatchFilterGroup) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PatchFilterGroup"}
if s.PatchFilters == nil {
invalidParams.Add(request.NewErrParamRequired("PatchFilters"))
}
if s.PatchFilters != nil {
for i, v := range s.PatchFilters {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "PatchFilters", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
// SetPatchFilters sets the PatchFilters field's value.
func (s *PatchFilterGroup) SetPatchFilters(v []*PatchFilter) *PatchFilterGroup {
s.PatchFilters = v
2016-11-19 19:41:01 +01:00
return s
}
// The mapping between a patch group and the patch baseline the patch group
// is registered with.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchGroupPatchBaselineMapping
type PatchGroupPatchBaselineMapping struct {
_ struct{} `type:"structure"`
// The patch baseline the patch group is registered with.
BaselineIdentity *PatchBaselineIdentity `type:"structure"`
// The name of the patch group registered with the patch baseline.
PatchGroup *string `min:"1" type:"string"`
2016-11-19 19:41:01 +01:00
}
// String returns the string representation
func (s PatchGroupPatchBaselineMapping) String() string {
return awsutil.Prettify(s)
2016-11-19 19:41:01 +01:00
}
// GoString returns the string representation
func (s PatchGroupPatchBaselineMapping) GoString() string {
return s.String()
2016-12-02 15:37:53 +01:00
}
// SetBaselineIdentity sets the BaselineIdentity field's value.
func (s *PatchGroupPatchBaselineMapping) SetBaselineIdentity(v *PatchBaselineIdentity) *PatchGroupPatchBaselineMapping {
s.BaselineIdentity = v
2016-12-02 15:37:53 +01:00
return s
}
// SetPatchGroup sets the PatchGroup field's value.
func (s *PatchGroupPatchBaselineMapping) SetPatchGroup(v string) *PatchGroupPatchBaselineMapping {
s.PatchGroup = &v
2016-12-02 15:37:53 +01:00
return s
}
// Defines a filter used in Patch Manager APIs.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchOrchestratorFilter
type PatchOrchestratorFilter struct {
2016-12-02 15:37:53 +01:00
_ struct{} `type:"structure"`
// The key for the filter.
Key *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// The value for the filter.
Values []*string `type:"list"`
2016-12-02 15:37:53 +01:00
}
// String returns the string representation
func (s PatchOrchestratorFilter) String() string {
2016-12-02 15:37:53 +01:00
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PatchOrchestratorFilter) GoString() string {
2016-12-02 15:37:53 +01:00
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *PatchOrchestratorFilter) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PatchOrchestratorFilter"}
if s.Key != nil && len(*s.Key) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Key", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
// SetKey sets the Key field's value.
func (s *PatchOrchestratorFilter) SetKey(v string) *PatchOrchestratorFilter {
s.Key = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetValues sets the Values field's value.
func (s *PatchOrchestratorFilter) SetValues(v []*string) *PatchOrchestratorFilter {
s.Values = v
2016-11-19 19:41:01 +01:00
return s
}
// Defines an approval rule for a patch baseline.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchRule
type PatchRule struct {
_ struct{} `type:"structure"`
// The number of days after the release date of each patch matched by the rule
// the patch is marked as approved in the patch baseline.
//
// ApproveAfterDays is a required field
ApproveAfterDays *int64 `type:"integer" required:"true"`
// The patch filter group that defines the criteria for the rule.
//
// PatchFilterGroup is a required field
PatchFilterGroup *PatchFilterGroup `type:"structure" required:"true"`
2016-11-19 19:41:01 +01:00
}
// String returns the string representation
func (s PatchRule) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PatchRule) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *PatchRule) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PatchRule"}
if s.ApproveAfterDays == nil {
invalidParams.Add(request.NewErrParamRequired("ApproveAfterDays"))
}
if s.PatchFilterGroup == nil {
invalidParams.Add(request.NewErrParamRequired("PatchFilterGroup"))
}
if s.PatchFilterGroup != nil {
if err := s.PatchFilterGroup.Validate(); err != nil {
invalidParams.AddNested("PatchFilterGroup", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetApproveAfterDays sets the ApproveAfterDays field's value.
func (s *PatchRule) SetApproveAfterDays(v int64) *PatchRule {
s.ApproveAfterDays = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetPatchFilterGroup sets the PatchFilterGroup field's value.
func (s *PatchRule) SetPatchFilterGroup(v *PatchFilterGroup) *PatchRule {
s.PatchFilterGroup = v
2016-11-19 19:41:01 +01:00
return s
}
// A set of rules defining the approval rules for a patch baseline.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchRuleGroup
type PatchRuleGroup struct {
_ struct{} `type:"structure"`
// The rules that make up the rule group.
2016-10-17 23:21:08 +02:00
//
// PatchRules is a required field
PatchRules []*PatchRule `type:"list" required:"true"`
}
// String returns the string representation
func (s PatchRuleGroup) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PatchRuleGroup) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *PatchRuleGroup) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PatchRuleGroup"}
if s.PatchRules == nil {
invalidParams.Add(request.NewErrParamRequired("PatchRules"))
}
if s.PatchRules != nil {
for i, v := range s.PatchRules {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "PatchRules", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetPatchRules sets the PatchRules field's value.
func (s *PatchRuleGroup) SetPatchRules(v []*PatchRule) *PatchRuleGroup {
s.PatchRules = v
return s
}
// Information about the approval status of a patch.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchStatus
type PatchStatus struct {
_ struct{} `type:"structure"`
// The date the patch was approved (or will be approved if the status is PENDING_APPROVAL).
ApprovalDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The approval status of a patch (APPROVED, PENDING_APPROVAL, EXPLICIT_APPROVED,
// EXPLICIT_REJECTED).
DeploymentStatus *string `type:"string" enum:"PatchDeploymentStatus"`
}
// String returns the string representation
func (s PatchStatus) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PatchStatus) GoString() string {
return s.String()
}
// SetApprovalDate sets the ApprovalDate field's value.
func (s *PatchStatus) SetApprovalDate(v time.Time) *PatchStatus {
s.ApprovalDate = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetDeploymentStatus sets the DeploymentStatus field's value.
func (s *PatchStatus) SetDeploymentStatus(v string) *PatchStatus {
s.DeploymentStatus = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutInventoryRequest
2016-12-02 15:37:53 +01:00
type PutInventoryInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// One or more instance IDs where you want to add or update inventory items.
//
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The inventory items that you want to add or update on instances.
//
// Items is a required field
Items []*InventoryItem `locationNameList:"Item" min:"1" type:"list" required:"true"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s PutInventoryInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s PutInventoryInput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Validate inspects the fields of the type to determine if they are valid.
func (s *PutInventoryInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PutInventoryInput"}
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
}
if s.Items == nil {
invalidParams.Add(request.NewErrParamRequired("Items"))
}
if s.Items != nil && len(s.Items) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Items", 1))
}
if s.Items != nil {
for i, v := range s.Items {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Items", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// SetInstanceId sets the InstanceId field's value.
func (s *PutInventoryInput) SetInstanceId(v string) *PutInventoryInput {
s.InstanceId = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetItems sets the Items field's value.
func (s *PutInventoryInput) SetItems(v []*InventoryItem) *PutInventoryInput {
s.Items = v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutInventoryResult
2016-12-02 15:37:53 +01:00
type PutInventoryOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s PutInventoryOutput) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s PutInventoryOutput) GoString() string {
return s.String()
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameterRequest
2016-12-02 15:37:53 +01:00
type PutParameterInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// Information about the parameter that you want to add to the system
Description *string `min:"1" type:"string"`
// The parameter key ID that you want to add to the system.
KeyId *string `min:"1" type:"string"`
// The name of the parameter that you want to add to the system.
//
// Name is a required field
Name *string `min:"1" type:"string" required:"true"`
// Overwrite an existing parameter.
Overwrite *bool `type:"boolean"`
// The type of parameter that you want to add to the system.
//
// Type is a required field
Type *string `type:"string" required:"true" enum:"ParameterType"`
// The parameter value that you want to add to the system.
//
// Value is a required field
Value *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s PutParameterInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s PutParameterInput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Validate inspects the fields of the type to determine if they are valid.
func (s *PutParameterInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PutParameterInput"}
if s.Description != nil && len(*s.Description) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Description", 1))
}
if s.KeyId != nil && len(*s.KeyId) < 1 {
invalidParams.Add(request.NewErrParamMinLen("KeyId", 1))
}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if s.Name != nil && len(*s.Name) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Name", 1))
}
if s.Type == nil {
invalidParams.Add(request.NewErrParamRequired("Type"))
}
if s.Value == nil {
invalidParams.Add(request.NewErrParamRequired("Value"))
}
if s.Value != nil && len(*s.Value) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Value", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
// SetDescription sets the Description field's value.
2016-12-02 15:37:53 +01:00
func (s *PutParameterInput) SetDescription(v string) *PutParameterInput {
2016-11-19 19:41:01 +01:00
s.Description = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetKeyId sets the KeyId field's value.
func (s *PutParameterInput) SetKeyId(v string) *PutParameterInput {
s.KeyId = &v
return s
}
2016-11-19 19:41:01 +01:00
// SetName sets the Name field's value.
2016-12-02 15:37:53 +01:00
func (s *PutParameterInput) SetName(v string) *PutParameterInput {
2016-11-19 19:41:01 +01:00
s.Name = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetOverwrite sets the Overwrite field's value.
func (s *PutParameterInput) SetOverwrite(v bool) *PutParameterInput {
s.Overwrite = &v
return s
}
2016-11-19 19:41:01 +01:00
// SetType sets the Type field's value.
2016-12-02 15:37:53 +01:00
func (s *PutParameterInput) SetType(v string) *PutParameterInput {
2016-11-19 19:41:01 +01:00
s.Type = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetValue sets the Value field's value.
func (s *PutParameterInput) SetValue(v string) *PutParameterInput {
s.Value = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameterResult
2016-12-02 15:37:53 +01:00
type PutParameterOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s PutParameterOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s PutParameterOutput) GoString() string {
return s.String()
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterDefaultPatchBaselineRequest
type RegisterDefaultPatchBaselineInput struct {
_ struct{} `type:"structure"`
// The ID of the patch baseline that should be the default patch baseline.
//
// BaselineId is a required field
BaselineId *string `min:"20" type:"string" required:"true"`
}
// String returns the string representation
func (s RegisterDefaultPatchBaselineInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RegisterDefaultPatchBaselineInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *RegisterDefaultPatchBaselineInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "RegisterDefaultPatchBaselineInput"}
if s.BaselineId == nil {
invalidParams.Add(request.NewErrParamRequired("BaselineId"))
}
if s.BaselineId != nil && len(*s.BaselineId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("BaselineId", 20))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetBaselineId sets the BaselineId field's value.
func (s *RegisterDefaultPatchBaselineInput) SetBaselineId(v string) *RegisterDefaultPatchBaselineInput {
s.BaselineId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterDefaultPatchBaselineResult
type RegisterDefaultPatchBaselineOutput struct {
_ struct{} `type:"structure"`
// The ID of the default patch baseline.
BaselineId *string `min:"20" type:"string"`
}
// String returns the string representation
func (s RegisterDefaultPatchBaselineOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RegisterDefaultPatchBaselineOutput) GoString() string {
return s.String()
}
// SetBaselineId sets the BaselineId field's value.
func (s *RegisterDefaultPatchBaselineOutput) SetBaselineId(v string) *RegisterDefaultPatchBaselineOutput {
s.BaselineId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterPatchBaselineForPatchGroupRequest
type RegisterPatchBaselineForPatchGroupInput struct {
_ struct{} `type:"structure"`
// The ID of the patch baseline to register the patch group with.
//
// BaselineId is a required field
BaselineId *string `min:"20" type:"string" required:"true"`
// The name of the patch group that should be registered with the patch baseline.
//
// PatchGroup is a required field
PatchGroup *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s RegisterPatchBaselineForPatchGroupInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RegisterPatchBaselineForPatchGroupInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *RegisterPatchBaselineForPatchGroupInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "RegisterPatchBaselineForPatchGroupInput"}
if s.BaselineId == nil {
invalidParams.Add(request.NewErrParamRequired("BaselineId"))
}
if s.BaselineId != nil && len(*s.BaselineId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("BaselineId", 20))
}
if s.PatchGroup == nil {
invalidParams.Add(request.NewErrParamRequired("PatchGroup"))
}
if s.PatchGroup != nil && len(*s.PatchGroup) < 1 {
invalidParams.Add(request.NewErrParamMinLen("PatchGroup", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetBaselineId sets the BaselineId field's value.
func (s *RegisterPatchBaselineForPatchGroupInput) SetBaselineId(v string) *RegisterPatchBaselineForPatchGroupInput {
s.BaselineId = &v
return s
}
// SetPatchGroup sets the PatchGroup field's value.
func (s *RegisterPatchBaselineForPatchGroupInput) SetPatchGroup(v string) *RegisterPatchBaselineForPatchGroupInput {
s.PatchGroup = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterPatchBaselineForPatchGroupResult
type RegisterPatchBaselineForPatchGroupOutput struct {
_ struct{} `type:"structure"`
// The ID of the patch baseline the patch group was registered with.
BaselineId *string `min:"20" type:"string"`
// The name of the patch group registered with the patch baseline.
PatchGroup *string `min:"1" type:"string"`
}
// String returns the string representation
func (s RegisterPatchBaselineForPatchGroupOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RegisterPatchBaselineForPatchGroupOutput) GoString() string {
return s.String()
}
// SetBaselineId sets the BaselineId field's value.
func (s *RegisterPatchBaselineForPatchGroupOutput) SetBaselineId(v string) *RegisterPatchBaselineForPatchGroupOutput {
s.BaselineId = &v
return s
}
// SetPatchGroup sets the PatchGroup field's value.
func (s *RegisterPatchBaselineForPatchGroupOutput) SetPatchGroup(v string) *RegisterPatchBaselineForPatchGroupOutput {
s.PatchGroup = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTargetWithMaintenanceWindowRequest
2016-12-02 15:37:53 +01:00
type RegisterTargetWithMaintenanceWindowInput struct {
_ struct{} `type:"structure"`
2016-11-19 19:41:01 +01:00
2016-12-02 15:37:53 +01:00
// User-provided idempotency token.
ClientToken *string `min:"1" type:"string" idempotencyToken:"true"`
2016-11-19 19:41:01 +01:00
2016-12-02 15:37:53 +01:00
// User-provided value that will be included in any CloudWatch events raised
// while running tasks for these targets in this Maintenance Window.
OwnerInformation *string `min:"1" type:"string"`
2016-11-19 19:41:01 +01:00
2016-12-02 15:37:53 +01:00
// The type of target being registered with the Maintenance Window.
//
// ResourceType is a required field
ResourceType *string `type:"string" required:"true" enum:"MaintenanceWindowResourceType"`
2016-12-02 15:37:53 +01:00
// The targets (either instances or tags). Instances are specified using Key=instanceids,Values=<instanceid1>,<instanceid2>.
// Tags are specified using Key=<tag name>,Values=<tag value>.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Targets is a required field
Targets []*Target `type:"list" required:"true"`
// The ID of the Maintenance Window the target should be registered with.
//
// WindowId is a required field
WindowId *string `min:"20" type:"string" required:"true"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s RegisterTargetWithMaintenanceWindowInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s RegisterTargetWithMaintenanceWindowInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
2016-12-02 15:37:53 +01:00
func (s *RegisterTargetWithMaintenanceWindowInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "RegisterTargetWithMaintenanceWindowInput"}
if s.ClientToken != nil && len(*s.ClientToken) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ClientToken", 1))
}
if s.OwnerInformation != nil && len(*s.OwnerInformation) < 1 {
invalidParams.Add(request.NewErrParamMinLen("OwnerInformation", 1))
}
if s.ResourceType == nil {
invalidParams.Add(request.NewErrParamRequired("ResourceType"))
}
if s.Targets == nil {
invalidParams.Add(request.NewErrParamRequired("Targets"))
}
if s.WindowId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowId"))
}
if s.WindowId != nil && len(*s.WindowId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("WindowId", 20))
}
if s.Targets != nil {
for i, v := range s.Targets {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Targets", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetClientToken sets the ClientToken field's value.
func (s *RegisterTargetWithMaintenanceWindowInput) SetClientToken(v string) *RegisterTargetWithMaintenanceWindowInput {
s.ClientToken = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetOwnerInformation sets the OwnerInformation field's value.
func (s *RegisterTargetWithMaintenanceWindowInput) SetOwnerInformation(v string) *RegisterTargetWithMaintenanceWindowInput {
s.OwnerInformation = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetResourceType sets the ResourceType field's value.
func (s *RegisterTargetWithMaintenanceWindowInput) SetResourceType(v string) *RegisterTargetWithMaintenanceWindowInput {
s.ResourceType = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetTargets sets the Targets field's value.
func (s *RegisterTargetWithMaintenanceWindowInput) SetTargets(v []*Target) *RegisterTargetWithMaintenanceWindowInput {
s.Targets = v
return s
}
// SetWindowId sets the WindowId field's value.
func (s *RegisterTargetWithMaintenanceWindowInput) SetWindowId(v string) *RegisterTargetWithMaintenanceWindowInput {
s.WindowId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTargetWithMaintenanceWindowResult
2016-12-02 15:37:53 +01:00
type RegisterTargetWithMaintenanceWindowOutput struct {
_ struct{} `type:"structure"`
// The ID of the target definition in this Maintenance Window.
WindowTargetId *string `min:"36" type:"string"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s RegisterTargetWithMaintenanceWindowOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s RegisterTargetWithMaintenanceWindowOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetWindowTargetId sets the WindowTargetId field's value.
func (s *RegisterTargetWithMaintenanceWindowOutput) SetWindowTargetId(v string) *RegisterTargetWithMaintenanceWindowOutput {
s.WindowTargetId = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTaskWithMaintenanceWindowRequest
2016-12-02 15:37:53 +01:00
type RegisterTaskWithMaintenanceWindowInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// User-provided idempotency token.
ClientToken *string `min:"1" type:"string" idempotencyToken:"true"`
2016-12-02 15:37:53 +01:00
// A structure containing information about an Amazon S3 bucket to write instance-level
// logs to.
LoggingInfo *LoggingInfo `type:"structure"`
2016-12-02 15:37:53 +01:00
// The maximum number of targets this task can be run for in parallel.
//
// MaxConcurrency is a required field
MaxConcurrency *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The maximum number of errors allowed before this task stops being scheduled.
//
// MaxErrors is a required field
MaxErrors *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The priority of the task in the Maintenance Window, the lower the number
// the higher the priority. Tasks in a Maintenance Window are scheduled in priority
// order with tasks that have the same priority scheduled in parallel.
Priority *int64 `type:"integer"`
2016-12-02 15:37:53 +01:00
// The role that should be assumed when executing the task.
//
// ServiceRoleArn is a required field
ServiceRoleArn *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The targets (either instances or tags). Instances are specified using Key=instanceids,Values=<instanceid1>,<instanceid2>.
// Tags are specified using Key=<tag name>,Values=<tag value>.
//
// Targets is a required field
Targets []*Target `type:"list" required:"true"`
2016-12-02 15:37:53 +01:00
// The ARN of the task to execute
//
// TaskArn is a required field
TaskArn *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The parameters that should be passed to the task when it is executed.
TaskParameters map[string]*MaintenanceWindowTaskParameterValueExpression `type:"map"`
2016-12-02 15:37:53 +01:00
// The type of task being registered.
//
// TaskType is a required field
TaskType *string `type:"string" required:"true" enum:"MaintenanceWindowTaskType"`
2016-12-02 15:37:53 +01:00
// The id of the Maintenance Window the task should be added to.
//
// WindowId is a required field
WindowId *string `min:"20" type:"string" required:"true"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s RegisterTaskWithMaintenanceWindowInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s RegisterTaskWithMaintenanceWindowInput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Validate inspects the fields of the type to determine if they are valid.
func (s *RegisterTaskWithMaintenanceWindowInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "RegisterTaskWithMaintenanceWindowInput"}
if s.ClientToken != nil && len(*s.ClientToken) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ClientToken", 1))
}
if s.MaxConcurrency == nil {
invalidParams.Add(request.NewErrParamRequired("MaxConcurrency"))
}
if s.MaxConcurrency != nil && len(*s.MaxConcurrency) < 1 {
invalidParams.Add(request.NewErrParamMinLen("MaxConcurrency", 1))
}
if s.MaxErrors == nil {
invalidParams.Add(request.NewErrParamRequired("MaxErrors"))
}
if s.MaxErrors != nil && len(*s.MaxErrors) < 1 {
invalidParams.Add(request.NewErrParamMinLen("MaxErrors", 1))
}
if s.ServiceRoleArn == nil {
invalidParams.Add(request.NewErrParamRequired("ServiceRoleArn"))
}
if s.Targets == nil {
invalidParams.Add(request.NewErrParamRequired("Targets"))
}
if s.TaskArn == nil {
invalidParams.Add(request.NewErrParamRequired("TaskArn"))
}
if s.TaskArn != nil && len(*s.TaskArn) < 1 {
invalidParams.Add(request.NewErrParamMinLen("TaskArn", 1))
}
if s.TaskType == nil {
invalidParams.Add(request.NewErrParamRequired("TaskType"))
}
if s.WindowId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowId"))
}
if s.WindowId != nil && len(*s.WindowId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("WindowId", 20))
}
if s.LoggingInfo != nil {
if err := s.LoggingInfo.Validate(); err != nil {
invalidParams.AddNested("LoggingInfo", err.(request.ErrInvalidParams))
}
}
if s.Targets != nil {
for i, v := range s.Targets {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Targets", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// SetClientToken sets the ClientToken field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetClientToken(v string) *RegisterTaskWithMaintenanceWindowInput {
s.ClientToken = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetLoggingInfo sets the LoggingInfo field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetLoggingInfo(v *LoggingInfo) *RegisterTaskWithMaintenanceWindowInput {
s.LoggingInfo = v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetMaxConcurrency sets the MaxConcurrency field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetMaxConcurrency(v string) *RegisterTaskWithMaintenanceWindowInput {
s.MaxConcurrency = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetMaxErrors sets the MaxErrors field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetMaxErrors(v string) *RegisterTaskWithMaintenanceWindowInput {
s.MaxErrors = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetPriority sets the Priority field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetPriority(v int64) *RegisterTaskWithMaintenanceWindowInput {
s.Priority = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetServiceRoleArn sets the ServiceRoleArn field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetServiceRoleArn(v string) *RegisterTaskWithMaintenanceWindowInput {
s.ServiceRoleArn = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetTargets sets the Targets field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetTargets(v []*Target) *RegisterTaskWithMaintenanceWindowInput {
s.Targets = v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetTaskArn sets the TaskArn field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetTaskArn(v string) *RegisterTaskWithMaintenanceWindowInput {
s.TaskArn = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetTaskParameters sets the TaskParameters field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetTaskParameters(v map[string]*MaintenanceWindowTaskParameterValueExpression) *RegisterTaskWithMaintenanceWindowInput {
s.TaskParameters = v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetTaskType sets the TaskType field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetTaskType(v string) *RegisterTaskWithMaintenanceWindowInput {
s.TaskType = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetWindowId sets the WindowId field's value.
func (s *RegisterTaskWithMaintenanceWindowInput) SetWindowId(v string) *RegisterTaskWithMaintenanceWindowInput {
s.WindowId = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTaskWithMaintenanceWindowResult
2016-12-02 15:37:53 +01:00
type RegisterTaskWithMaintenanceWindowOutput struct {
_ struct{} `type:"structure"`
// The id of the task in the Maintenance Window.
WindowTaskId *string `min:"36" type:"string"`
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s RegisterTaskWithMaintenanceWindowOutput) String() string {
return awsutil.Prettify(s)
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s RegisterTaskWithMaintenanceWindowOutput) GoString() string {
return s.String()
}
// SetWindowTaskId sets the WindowTaskId field's value.
func (s *RegisterTaskWithMaintenanceWindowOutput) SetWindowTaskId(v string) *RegisterTaskWithMaintenanceWindowOutput {
s.WindowTaskId = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RemoveTagsFromResourceRequest
2016-12-02 15:37:53 +01:00
type RemoveTagsFromResourceInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The resource ID for which you want to remove tags.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// ResourceId is a required field
ResourceId *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The type of resource of which you want to remove a tag.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// ResourceType is a required field
ResourceType *string `type:"string" required:"true" enum:"ResourceTypeForTagging"`
// Tag keys that you want to remove from the specified resource.
//
// TagKeys is a required field
TagKeys []*string `type:"list" required:"true"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s RemoveTagsFromResourceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s RemoveTagsFromResourceInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
2016-12-02 15:37:53 +01:00
func (s *RemoveTagsFromResourceInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "RemoveTagsFromResourceInput"}
if s.ResourceId == nil {
invalidParams.Add(request.NewErrParamRequired("ResourceId"))
}
2016-12-02 15:37:53 +01:00
if s.ResourceType == nil {
invalidParams.Add(request.NewErrParamRequired("ResourceType"))
}
2016-12-02 15:37:53 +01:00
if s.TagKeys == nil {
invalidParams.Add(request.NewErrParamRequired("TagKeys"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetResourceId sets the ResourceId field's value.
func (s *RemoveTagsFromResourceInput) SetResourceId(v string) *RemoveTagsFromResourceInput {
s.ResourceId = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetResourceType sets the ResourceType field's value.
func (s *RemoveTagsFromResourceInput) SetResourceType(v string) *RemoveTagsFromResourceInput {
s.ResourceType = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetTagKeys sets the TagKeys field's value.
func (s *RemoveTagsFromResourceInput) SetTagKeys(v []*string) *RemoveTagsFromResourceInput {
s.TagKeys = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RemoveTagsFromResourceResult
2016-12-02 15:37:53 +01:00
type RemoveTagsFromResourceOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s RemoveTagsFromResourceOutput) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s RemoveTagsFromResourceOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// The inventory item result attribute.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResultAttribute
2016-12-02 15:37:53 +01:00
type ResultAttribute struct {
_ struct{} `type:"structure"`
// Name of the inventory item type. Valid value: “AWS:InstanceInformation”.
// Default Value: “AWS:InstanceInformation”.
//
// TypeName is a required field
TypeName *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s ResultAttribute) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s ResultAttribute) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
2016-12-02 15:37:53 +01:00
func (s *ResultAttribute) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ResultAttribute"}
if s.TypeName == nil {
invalidParams.Add(request.NewErrParamRequired("TypeName"))
}
2016-12-02 15:37:53 +01:00
if s.TypeName != nil && len(*s.TypeName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("TypeName", 1))
}
2016-12-02 15:37:53 +01:00
if invalidParams.Len() > 0 {
return invalidParams
}
2016-12-02 15:37:53 +01:00
return nil
}
// SetTypeName sets the TypeName field's value.
func (s *ResultAttribute) SetTypeName(v string) *ResultAttribute {
s.TypeName = &v
return s
}
// An Amazon S3 bucket where you want to store the results of this request.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/S3OutputLocation
2016-12-02 15:37:53 +01:00
type S3OutputLocation struct {
_ struct{} `type:"structure"`
// The name of the Amazon S3 bucket.
OutputS3BucketName *string `min:"3" type:"string"`
// The Amazon S3 bucket subfolder.
OutputS3KeyPrefix *string `type:"string"`
// The Amazon S3 region where the association information is stored.
OutputS3Region *string `min:"3" type:"string"`
}
// String returns the string representation
func (s S3OutputLocation) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s S3OutputLocation) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *S3OutputLocation) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "S3OutputLocation"}
if s.OutputS3BucketName != nil && len(*s.OutputS3BucketName) < 3 {
invalidParams.Add(request.NewErrParamMinLen("OutputS3BucketName", 3))
}
if s.OutputS3Region != nil && len(*s.OutputS3Region) < 3 {
invalidParams.Add(request.NewErrParamMinLen("OutputS3Region", 3))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetOutputS3BucketName sets the OutputS3BucketName field's value.
func (s *S3OutputLocation) SetOutputS3BucketName(v string) *S3OutputLocation {
s.OutputS3BucketName = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetOutputS3KeyPrefix sets the OutputS3KeyPrefix field's value.
func (s *S3OutputLocation) SetOutputS3KeyPrefix(v string) *S3OutputLocation {
s.OutputS3KeyPrefix = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetOutputS3Region sets the OutputS3Region field's value.
func (s *S3OutputLocation) SetOutputS3Region(v string) *S3OutputLocation {
s.OutputS3Region = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// A URL for the Amazon S3 bucket where you want to store the results of this
// request.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/S3OutputUrl
2016-12-02 15:37:53 +01:00
type S3OutputUrl struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// A URL for an Amazon S3 bucket where you want to store the results of this
// request.
OutputUrl *string `type:"string"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s S3OutputUrl) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s S3OutputUrl) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetOutputUrl sets the OutputUrl field's value.
func (s *S3OutputUrl) SetOutputUrl(v string) *S3OutputUrl {
s.OutputUrl = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/SendCommandRequest
2016-12-02 15:37:53 +01:00
type SendCommandInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// User-specified information about the command, such as a brief description
// of what the command should do.
Comment *string `type:"string"`
2016-12-02 15:37:53 +01:00
// The Sha256 or Sha1 hash created by the system when the document was created.
//
// Sha1 hashes have been deprecated.
DocumentHash *string `type:"string"`
2016-12-02 15:37:53 +01:00
// Sha256 or Sha1.
//
// Sha1 hashes have been deprecated.
DocumentHashType *string `type:"string" enum:"DocumentHashType"`
2016-12-02 15:37:53 +01:00
// Required. The name of the SSM document to execute. This can be an SSM public
// document or a custom document.
//
// DocumentName is a required field
DocumentName *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// Required. The instance IDs where the command should execute. You can specify
// a maximum of 50 IDs.
InstanceIds []*string `type:"list"`
// (Optional) The maximum number of instances that are allowed to execute the
// command at the same time. You can specify a number such as “10” or a percentage
// such as “10%”. The default value is 50. For more information about how to
// use MaxConcurrency, see Executing a Command Using Amazon EC2 Run Command
// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/run-command.html) (Linux)
// or Executing a Command Using Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/run-command.html)
// (Windows).
MaxConcurrency *string `min:"1" type:"string"`
// The maximum number of errors allowed without the command failing. When the
// command fails one more time beyond the value of MaxErrors, the systems stops
// sending the command to additional targets. You can specify a number like
// “10” or a percentage like “10%”. The default value is 50. For more information
// about how to use MaxErrors, see Executing a Command Using Amazon EC2 Run
// Command (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/run-command.html)
// (Linux) or Executing a Command Using Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/run-command.html)
// (Windows).
MaxErrors *string `min:"1" type:"string"`
2016-12-02 15:37:53 +01:00
// Configurations for sending notifications.
NotificationConfig *NotificationConfig `type:"structure"`
// The name of the S3 bucket where command execution responses should be stored.
OutputS3BucketName *string `min:"3" type:"string"`
// The directory structure within the S3 bucket where the responses should be
// stored.
OutputS3KeyPrefix *string `type:"string"`
// (Optional) The region where the Amazon Simple Storage Service (Amazon S3)
// output bucket is located. The default value is the region where Run Command
// is being called.
OutputS3Region *string `min:"3" type:"string"`
// The required and optional parameters specified in the SSM document being
// executed.
Parameters map[string][]*string `type:"map"`
// The IAM role that Systems Manager uses to send notifications.
ServiceRoleArn *string `type:"string"`
// (Optional) An array of search criteria that targets instances using a Key;Value
// combination that you specify. Targets is required if you don't provide one
// or more instance IDs in the call. For more information about how to use Targets,
// see Executing a Command Using Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/run-command.html)
// (Linux) or Executing a Command Using Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/run-command.html)
// (Windows).
Targets []*Target `type:"list"`
// If this time is reached and the command has not already started executing,
// it will not execute.
TimeoutSeconds *int64 `min:"30" type:"integer"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s SendCommandInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s SendCommandInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
2016-12-02 15:37:53 +01:00
func (s *SendCommandInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "SendCommandInput"}
if s.DocumentName == nil {
invalidParams.Add(request.NewErrParamRequired("DocumentName"))
}
2016-12-02 15:37:53 +01:00
if s.MaxConcurrency != nil && len(*s.MaxConcurrency) < 1 {
invalidParams.Add(request.NewErrParamMinLen("MaxConcurrency", 1))
}
2016-12-02 15:37:53 +01:00
if s.MaxErrors != nil && len(*s.MaxErrors) < 1 {
invalidParams.Add(request.NewErrParamMinLen("MaxErrors", 1))
}
2016-12-02 15:37:53 +01:00
if s.OutputS3BucketName != nil && len(*s.OutputS3BucketName) < 3 {
invalidParams.Add(request.NewErrParamMinLen("OutputS3BucketName", 3))
}
if s.OutputS3Region != nil && len(*s.OutputS3Region) < 3 {
invalidParams.Add(request.NewErrParamMinLen("OutputS3Region", 3))
}
if s.TimeoutSeconds != nil && *s.TimeoutSeconds < 30 {
invalidParams.Add(request.NewErrParamMinValue("TimeoutSeconds", 30))
}
if s.Targets != nil {
for i, v := range s.Targets {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
2016-12-02 15:37:53 +01:00
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Targets", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetComment sets the Comment field's value.
func (s *SendCommandInput) SetComment(v string) *SendCommandInput {
s.Comment = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetDocumentHash sets the DocumentHash field's value.
func (s *SendCommandInput) SetDocumentHash(v string) *SendCommandInput {
s.DocumentHash = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetDocumentHashType sets the DocumentHashType field's value.
func (s *SendCommandInput) SetDocumentHashType(v string) *SendCommandInput {
s.DocumentHashType = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetDocumentName sets the DocumentName field's value.
func (s *SendCommandInput) SetDocumentName(v string) *SendCommandInput {
s.DocumentName = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetInstanceIds sets the InstanceIds field's value.
func (s *SendCommandInput) SetInstanceIds(v []*string) *SendCommandInput {
s.InstanceIds = v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetMaxConcurrency sets the MaxConcurrency field's value.
func (s *SendCommandInput) SetMaxConcurrency(v string) *SendCommandInput {
s.MaxConcurrency = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetMaxErrors sets the MaxErrors field's value.
func (s *SendCommandInput) SetMaxErrors(v string) *SendCommandInput {
s.MaxErrors = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetNotificationConfig sets the NotificationConfig field's value.
func (s *SendCommandInput) SetNotificationConfig(v *NotificationConfig) *SendCommandInput {
s.NotificationConfig = v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetOutputS3BucketName sets the OutputS3BucketName field's value.
func (s *SendCommandInput) SetOutputS3BucketName(v string) *SendCommandInput {
s.OutputS3BucketName = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetOutputS3KeyPrefix sets the OutputS3KeyPrefix field's value.
func (s *SendCommandInput) SetOutputS3KeyPrefix(v string) *SendCommandInput {
s.OutputS3KeyPrefix = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetOutputS3Region sets the OutputS3Region field's value.
func (s *SendCommandInput) SetOutputS3Region(v string) *SendCommandInput {
s.OutputS3Region = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetParameters sets the Parameters field's value.
func (s *SendCommandInput) SetParameters(v map[string][]*string) *SendCommandInput {
s.Parameters = v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetServiceRoleArn sets the ServiceRoleArn field's value.
func (s *SendCommandInput) SetServiceRoleArn(v string) *SendCommandInput {
s.ServiceRoleArn = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetTargets sets the Targets field's value.
func (s *SendCommandInput) SetTargets(v []*Target) *SendCommandInput {
s.Targets = v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetTimeoutSeconds sets the TimeoutSeconds field's value.
func (s *SendCommandInput) SetTimeoutSeconds(v int64) *SendCommandInput {
s.TimeoutSeconds = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/SendCommandResult
2016-12-02 15:37:53 +01:00
type SendCommandOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The request as it was received by Systems Manager. Also provides the command
// ID which can be used future references to this request.
Command *Command `type:"structure"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s SendCommandOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s SendCommandOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetCommand sets the Command field's value.
func (s *SendCommandOutput) SetCommand(v *Command) *SendCommandOutput {
s.Command = v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAutomationExecutionRequest
2016-12-02 15:37:53 +01:00
type StartAutomationExecutionInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The name of the Automation document to use for this execution.
//
// DocumentName is a required field
DocumentName *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The version of the Automation document to use for this execution.
DocumentVersion *string `type:"string"`
2016-12-02 15:37:53 +01:00
// A key-value map of execution parameters, which match the declared parameters
// in the Automation document.
Parameters map[string][]*string `min:"1" type:"map"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s StartAutomationExecutionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s StartAutomationExecutionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
2016-12-02 15:37:53 +01:00
func (s *StartAutomationExecutionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "StartAutomationExecutionInput"}
if s.DocumentName == nil {
invalidParams.Add(request.NewErrParamRequired("DocumentName"))
}
2016-12-02 15:37:53 +01:00
if s.Parameters != nil && len(s.Parameters) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Parameters", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetDocumentName sets the DocumentName field's value.
func (s *StartAutomationExecutionInput) SetDocumentName(v string) *StartAutomationExecutionInput {
s.DocumentName = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *StartAutomationExecutionInput) SetDocumentVersion(v string) *StartAutomationExecutionInput {
s.DocumentVersion = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetParameters sets the Parameters field's value.
func (s *StartAutomationExecutionInput) SetParameters(v map[string][]*string) *StartAutomationExecutionInput {
s.Parameters = v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAutomationExecutionResult
2016-12-02 15:37:53 +01:00
type StartAutomationExecutionOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The unique ID of a newly scheduled automation execution.
AutomationExecutionId *string `min:"36" type:"string"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s StartAutomationExecutionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s StartAutomationExecutionOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetAutomationExecutionId sets the AutomationExecutionId field's value.
func (s *StartAutomationExecutionOutput) SetAutomationExecutionId(v string) *StartAutomationExecutionOutput {
s.AutomationExecutionId = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// Detailed information about an the execution state of an Automation step.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StepExecution
2016-12-02 15:37:53 +01:00
type StepExecution struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The action this step performs. The action determines the behavior of the
// step.
Action *string `type:"string"`
2016-12-02 15:37:53 +01:00
// If a step has finished execution, this contains the time the execution ended.
// If the step has not yet concluded, this field is not populated.
ExecutionEndTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// If a step has begun execution, this contains the time the step started. If
// the step is in Pending status, this field is not populated.
ExecutionStartTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// If a step failed, this message explains why the execution failed.
FailureMessage *string `type:"string"`
// Fully-resolved values passed into the step before execution.
Inputs map[string]*string `type:"map"`
// Returned values from the execution of the step.
Outputs map[string][]*string `min:"1" type:"map"`
// A message associated with the response code for an execution.
Response *string `type:"string"`
// The response code returned by the execution of the step.
ResponseCode *string `type:"string"`
// The name of this execution step.
StepName *string `type:"string"`
// The execution status for this step. Valid values include: Pending, InProgress,
// Success, Cancelled, Failed, and TimedOut.
StepStatus *string `type:"string" enum:"AutomationExecutionStatus"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s StepExecution) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s StepExecution) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetAction sets the Action field's value.
func (s *StepExecution) SetAction(v string) *StepExecution {
s.Action = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetExecutionEndTime sets the ExecutionEndTime field's value.
func (s *StepExecution) SetExecutionEndTime(v time.Time) *StepExecution {
s.ExecutionEndTime = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetExecutionStartTime sets the ExecutionStartTime field's value.
func (s *StepExecution) SetExecutionStartTime(v time.Time) *StepExecution {
s.ExecutionStartTime = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetFailureMessage sets the FailureMessage field's value.
func (s *StepExecution) SetFailureMessage(v string) *StepExecution {
s.FailureMessage = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetInputs sets the Inputs field's value.
func (s *StepExecution) SetInputs(v map[string]*string) *StepExecution {
s.Inputs = v
return s
}
2016-12-02 15:37:53 +01:00
// SetOutputs sets the Outputs field's value.
func (s *StepExecution) SetOutputs(v map[string][]*string) *StepExecution {
s.Outputs = v
return s
}
2016-12-02 15:37:53 +01:00
// SetResponse sets the Response field's value.
func (s *StepExecution) SetResponse(v string) *StepExecution {
s.Response = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetResponseCode sets the ResponseCode field's value.
func (s *StepExecution) SetResponseCode(v string) *StepExecution {
s.ResponseCode = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetStepName sets the StepName field's value.
func (s *StepExecution) SetStepName(v string) *StepExecution {
s.StepName = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetStepStatus sets the StepStatus field's value.
func (s *StepExecution) SetStepStatus(v string) *StepExecution {
s.StepStatus = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StopAutomationExecutionRequest
2016-12-02 15:37:53 +01:00
type StopAutomationExecutionInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The execution ID of the Automation to stop.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// AutomationExecutionId is a required field
AutomationExecutionId *string `min:"36" type:"string" required:"true"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s StopAutomationExecutionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s StopAutomationExecutionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
2016-12-02 15:37:53 +01:00
func (s *StopAutomationExecutionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "StopAutomationExecutionInput"}
if s.AutomationExecutionId == nil {
invalidParams.Add(request.NewErrParamRequired("AutomationExecutionId"))
}
2016-12-02 15:37:53 +01:00
if s.AutomationExecutionId != nil && len(*s.AutomationExecutionId) < 36 {
invalidParams.Add(request.NewErrParamMinLen("AutomationExecutionId", 36))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetAutomationExecutionId sets the AutomationExecutionId field's value.
func (s *StopAutomationExecutionInput) SetAutomationExecutionId(v string) *StopAutomationExecutionInput {
s.AutomationExecutionId = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StopAutomationExecutionResult
2016-12-02 15:37:53 +01:00
type StopAutomationExecutionOutput struct {
_ struct{} `type:"structure"`
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s StopAutomationExecutionOutput) String() string {
return awsutil.Prettify(s)
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s StopAutomationExecutionOutput) GoString() string {
return s.String()
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// Metadata that you assign to your managed instances. Tags enable you to categorize
// your managed instances in different ways, for example, by purpose, owner,
// or environment.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Tag
2016-12-02 15:37:53 +01:00
type Tag struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The name of the tag.
//
// Key is a required field
Key *string `min:"1" type:"string" required:"true"`
// The value of the tag.
//
// Value is a required field
Value *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s Tag) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Tag) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *Tag) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "Tag"}
if s.Key == nil {
invalidParams.Add(request.NewErrParamRequired("Key"))
}
if s.Key != nil && len(*s.Key) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Key", 1))
}
if s.Value == nil {
invalidParams.Add(request.NewErrParamRequired("Value"))
}
if s.Value != nil && len(*s.Value) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Value", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetKey sets the Key field's value.
func (s *Tag) SetKey(v string) *Tag {
s.Key = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetValue sets the Value field's value.
func (s *Tag) SetValue(v string) *Tag {
s.Value = &v
return s
}
2016-12-02 15:37:53 +01:00
// An array of search criteria that targets instances using a Key;Value combination
// that you specify. Targets is required if you don't provide one or more instance
// IDs in the call.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Target
2016-12-02 15:37:53 +01:00
type Target struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// User-defined criteria for sending commands that target instances that meet
// the criteria. Key can be tag:<Amazon EC2 tag> or name:<Amazon EC2 instance
// ID>. For example, tag:ServerRole or name:0123456789012345. For more information
// about how to send commands that target instances using Key;Value parameters,
// see Executing a Command Using Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/run-command.html)
// (Linux) or Executing a Command Using Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/run-command.html)
// (Windows).
Key *string `min:"1" type:"string"`
// User-defined criteria that maps to Key. For example, if you specified tag:ServerRole,
// you could specify value:WebServer to execute a command on instances that
// include Amazon EC2 tags of ServerRole;WebServer. For more information about
// how to send commands that target instances using Key;Value parameters, see
// Executing a Command Using Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/run-command.html)
// (Linux) or Executing a Command Using Amazon EC2 Run Command (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/run-command.html)
// (Windows).
Values []*string `type:"list"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s Target) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s Target) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// Validate inspects the fields of the type to determine if they are valid.
func (s *Target) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "Target"}
if s.Key != nil && len(*s.Key) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Key", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// SetKey sets the Key field's value.
func (s *Target) SetKey(v string) *Target {
s.Key = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetValues sets the Values field's value.
func (s *Target) SetValues(v []*string) *Target {
s.Values = v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationRequest
2016-12-02 15:37:53 +01:00
type UpdateAssociationInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The ID of the association you want to update.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// AssociationId is a required field
AssociationId *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The document version you want update for the association.
DocumentVersion *string `type:"string"`
2016-12-02 15:37:53 +01:00
// An Amazon S3 bucket where you want to store the results of this request.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// "{ \"S3Location\": { \"OutputS3Region\": \"<region>\", \"OutputS3BucketName\":
// \"bucket name\", \"OutputS3KeyPrefix\": \"folder name\" } }"
OutputLocation *InstanceAssociationOutputLocation `type:"structure"`
// The parameters you want to update for the association. If you create a parameter
// using Parameter Store, you can reference the parameter using {{ssm:parameter-name}}
Parameters map[string][]*string `type:"map"`
// The cron expression used to schedule the association that you want to update.
// Supported expressions are every half, 1, 2, 4, 8 or 12 hour(s); every specified
// day and time of the week. For example: cron(0 0/30 * 1/1 * ? *) to run every
// thirty minutes; cron(0 0 0/4 1/1 * ? *) to run every four hours; and cron(0
// 0 10 ? * SUN *) to run every Sunday at 10 a.m.
ScheduleExpression *string `min:"1" type:"string"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateAssociationInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateAssociationInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
2016-12-02 15:37:53 +01:00
func (s *UpdateAssociationInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "UpdateAssociationInput"}
if s.AssociationId == nil {
invalidParams.Add(request.NewErrParamRequired("AssociationId"))
}
2016-12-02 15:37:53 +01:00
if s.ScheduleExpression != nil && len(*s.ScheduleExpression) < 1 {
invalidParams.Add(request.NewErrParamMinLen("ScheduleExpression", 1))
}
2016-12-02 15:37:53 +01:00
if s.OutputLocation != nil {
if err := s.OutputLocation.Validate(); err != nil {
invalidParams.AddNested("OutputLocation", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetAssociationId sets the AssociationId field's value.
func (s *UpdateAssociationInput) SetAssociationId(v string) *UpdateAssociationInput {
s.AssociationId = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *UpdateAssociationInput) SetDocumentVersion(v string) *UpdateAssociationInput {
s.DocumentVersion = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetOutputLocation sets the OutputLocation field's value.
func (s *UpdateAssociationInput) SetOutputLocation(v *InstanceAssociationOutputLocation) *UpdateAssociationInput {
s.OutputLocation = v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetParameters sets the Parameters field's value.
func (s *UpdateAssociationInput) SetParameters(v map[string][]*string) *UpdateAssociationInput {
s.Parameters = v
return s
}
// SetScheduleExpression sets the ScheduleExpression field's value.
func (s *UpdateAssociationInput) SetScheduleExpression(v string) *UpdateAssociationInput {
s.ScheduleExpression = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationResult
2016-12-02 15:37:53 +01:00
type UpdateAssociationOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The description of the association that was updated.
AssociationDescription *AssociationDescription `type:"structure"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateAssociationOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateAssociationOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetAssociationDescription sets the AssociationDescription field's value.
func (s *UpdateAssociationOutput) SetAssociationDescription(v *AssociationDescription) *UpdateAssociationOutput {
s.AssociationDescription = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatusRequest
2016-12-02 15:37:53 +01:00
type UpdateAssociationStatusInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The association status.
//
2016-12-02 15:37:53 +01:00
// AssociationStatus is a required field
AssociationStatus *AssociationStatus `type:"structure" required:"true"`
2016-12-02 15:37:53 +01:00
// The ID of the instance.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The name of the SSM document.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Name is a required field
Name *string `type:"string" required:"true"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateAssociationStatusInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateAssociationStatusInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
2016-12-02 15:37:53 +01:00
func (s *UpdateAssociationStatusInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "UpdateAssociationStatusInput"}
if s.AssociationStatus == nil {
invalidParams.Add(request.NewErrParamRequired("AssociationStatus"))
}
2016-12-02 15:37:53 +01:00
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
}
2016-12-02 15:37:53 +01:00
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
2016-12-02 15:37:53 +01:00
if s.AssociationStatus != nil {
if err := s.AssociationStatus.Validate(); err != nil {
invalidParams.AddNested("AssociationStatus", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetAssociationStatus sets the AssociationStatus field's value.
func (s *UpdateAssociationStatusInput) SetAssociationStatus(v *AssociationStatus) *UpdateAssociationStatusInput {
s.AssociationStatus = v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetInstanceId sets the InstanceId field's value.
func (s *UpdateAssociationStatusInput) SetInstanceId(v string) *UpdateAssociationStatusInput {
s.InstanceId = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetName sets the Name field's value.
func (s *UpdateAssociationStatusInput) SetName(v string) *UpdateAssociationStatusInput {
s.Name = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatusResult
2016-12-02 15:37:53 +01:00
type UpdateAssociationStatusOutput struct {
_ struct{} `type:"structure"`
// Information about the association.
AssociationDescription *AssociationDescription `type:"structure"`
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s UpdateAssociationStatusOutput) String() string {
return awsutil.Prettify(s)
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s UpdateAssociationStatusOutput) GoString() string {
return s.String()
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// SetAssociationDescription sets the AssociationDescription field's value.
func (s *UpdateAssociationStatusOutput) SetAssociationDescription(v *AssociationDescription) *UpdateAssociationStatusOutput {
s.AssociationDescription = v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocumentDefaultVersionRequest
2016-12-02 15:37:53 +01:00
type UpdateDocumentDefaultVersionInput struct {
_ struct{} `type:"structure"`
// The version of a custom document that you want to set as the default version.
//
// DocumentVersion is a required field
DocumentVersion *string `type:"string" required:"true"`
// The name of a custom document that you want to set as the default version.
//
// Name is a required field
Name *string `type:"string" required:"true"`
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s UpdateDocumentDefaultVersionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateDocumentDefaultVersionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *UpdateDocumentDefaultVersionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "UpdateDocumentDefaultVersionInput"}
if s.DocumentVersion == nil {
invalidParams.Add(request.NewErrParamRequired("DocumentVersion"))
}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
2016-11-19 19:41:01 +01:00
}
2016-12-02 15:37:53 +01:00
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *UpdateDocumentDefaultVersionInput) SetDocumentVersion(v string) *UpdateDocumentDefaultVersionInput {
s.DocumentVersion = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetName sets the Name field's value.
func (s *UpdateDocumentDefaultVersionInput) SetName(v string) *UpdateDocumentDefaultVersionInput {
s.Name = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocumentDefaultVersionResult
2016-12-02 15:37:53 +01:00
type UpdateDocumentDefaultVersionOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The description of a custom document that you want to set as the default
// version.
Description *DocumentDefaultVersionDescription `type:"structure"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateDocumentDefaultVersionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateDocumentDefaultVersionOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetDescription sets the Description field's value.
func (s *UpdateDocumentDefaultVersionOutput) SetDescription(v *DocumentDefaultVersionDescription) *UpdateDocumentDefaultVersionOutput {
s.Description = v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocumentRequest
2016-12-02 15:37:53 +01:00
type UpdateDocumentInput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// The content in a document that you want to update.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Content is a required field
Content *string `min:"1" type:"string" required:"true"`
2016-12-02 15:37:53 +01:00
// The version of the document that you want to update.
DocumentVersion *string `type:"string"`
// The name of the document that you want to update.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// Name is a required field
Name *string `type:"string" required:"true"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateDocumentInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateDocumentInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
2016-12-02 15:37:53 +01:00
func (s *UpdateDocumentInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "UpdateDocumentInput"}
if s.Content == nil {
invalidParams.Add(request.NewErrParamRequired("Content"))
}
2016-12-02 15:37:53 +01:00
if s.Content != nil && len(*s.Content) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Content", 1))
}
2016-12-02 15:37:53 +01:00
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetContent sets the Content field's value.
func (s *UpdateDocumentInput) SetContent(v string) *UpdateDocumentInput {
s.Content = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetDocumentVersion sets the DocumentVersion field's value.
func (s *UpdateDocumentInput) SetDocumentVersion(v string) *UpdateDocumentInput {
s.DocumentVersion = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetName sets the Name field's value.
func (s *UpdateDocumentInput) SetName(v string) *UpdateDocumentInput {
s.Name = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocumentResult
2016-12-02 15:37:53 +01:00
type UpdateDocumentOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// A description of the document that was updated.
DocumentDescription *DocumentDescription `type:"structure"`
}
2016-12-02 15:37:53 +01:00
// String returns the string representation
func (s UpdateDocumentOutput) String() string {
return awsutil.Prettify(s)
}
2016-12-02 15:37:53 +01:00
// GoString returns the string representation
func (s UpdateDocumentOutput) GoString() string {
return s.String()
}
// SetDocumentDescription sets the DocumentDescription field's value.
func (s *UpdateDocumentOutput) SetDocumentDescription(v *DocumentDescription) *UpdateDocumentOutput {
s.DocumentDescription = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateMaintenanceWindowRequest
2016-12-02 15:37:53 +01:00
type UpdateMaintenanceWindowInput struct {
_ struct{} `type:"structure"`
// Whether targets must be registered with the Maintenance Window before tasks
// can be defined for those targets.
AllowUnassociatedTargets *bool `type:"boolean"`
// The number of hours before the end of the Maintenance Window that Systems
// Manager stops scheduling new tasks for execution.
Cutoff *int64 `type:"integer"`
// The duration of the Maintenance Window in hours.
Duration *int64 `min:"1" type:"integer"`
// Whether the Maintenance Window is enabled.
Enabled *bool `type:"boolean"`
// The name of the Maintenance Window.
Name *string `min:"3" type:"string"`
// The schedule of the Maintenance Window in the form of a cron or rate expression.
Schedule *string `min:"1" type:"string"`
// The ID of the Maintenance Window to update.
2016-10-17 23:21:08 +02:00
//
2016-12-02 15:37:53 +01:00
// WindowId is a required field
WindowId *string `min:"20" type:"string" required:"true"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateMaintenanceWindowInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateMaintenanceWindowInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
2016-12-02 15:37:53 +01:00
func (s *UpdateMaintenanceWindowInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "UpdateMaintenanceWindowInput"}
if s.Duration != nil && *s.Duration < 1 {
invalidParams.Add(request.NewErrParamMinValue("Duration", 1))
}
2016-12-02 15:37:53 +01:00
if s.Name != nil && len(*s.Name) < 3 {
invalidParams.Add(request.NewErrParamMinLen("Name", 3))
}
2016-12-02 15:37:53 +01:00
if s.Schedule != nil && len(*s.Schedule) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Schedule", 1))
}
2016-12-02 15:37:53 +01:00
if s.WindowId == nil {
invalidParams.Add(request.NewErrParamRequired("WindowId"))
}
if s.WindowId != nil && len(*s.WindowId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("WindowId", 20))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-12-02 15:37:53 +01:00
// SetAllowUnassociatedTargets sets the AllowUnassociatedTargets field's value.
func (s *UpdateMaintenanceWindowInput) SetAllowUnassociatedTargets(v bool) *UpdateMaintenanceWindowInput {
s.AllowUnassociatedTargets = &v
2016-11-19 19:41:01 +01:00
return s
}
2016-12-02 15:37:53 +01:00
// SetCutoff sets the Cutoff field's value.
func (s *UpdateMaintenanceWindowInput) SetCutoff(v int64) *UpdateMaintenanceWindowInput {
s.Cutoff = &v
return s
}
// SetDuration sets the Duration field's value.
func (s *UpdateMaintenanceWindowInput) SetDuration(v int64) *UpdateMaintenanceWindowInput {
s.Duration = &v
return s
}
// SetEnabled sets the Enabled field's value.
func (s *UpdateMaintenanceWindowInput) SetEnabled(v bool) *UpdateMaintenanceWindowInput {
s.Enabled = &v
2016-11-19 19:41:01 +01:00
return s
}
// SetName sets the Name field's value.
2016-12-02 15:37:53 +01:00
func (s *UpdateMaintenanceWindowInput) SetName(v string) *UpdateMaintenanceWindowInput {
2016-11-19 19:41:01 +01:00
s.Name = &v
return s
}
2016-12-02 15:37:53 +01:00
// SetSchedule sets the Schedule field's value.
func (s *UpdateMaintenanceWindowInput) SetSchedule(v string) *UpdateMaintenanceWindowInput {
s.Schedule = &v
return s
}
// SetWindowId sets the WindowId field's value.
func (s *UpdateMaintenanceWindowInput) SetWindowId(v string) *UpdateMaintenanceWindowInput {
s.WindowId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateMaintenanceWindowResult
2016-12-02 15:37:53 +01:00
type UpdateMaintenanceWindowOutput struct {
_ struct{} `type:"structure"`
2016-12-02 15:37:53 +01:00
// Whether targets must be registered with the Maintenance Window before tasks
// can be defined for those targets.
AllowUnassociatedTargets *bool `type:"boolean"`
// The number of hours before the end of the Maintenance Window that Systems
// Manager stops scheduling new tasks for execution.
Cutoff *int64 `type:"integer"`
// The duration of the Maintenance Window in hours.
Duration *int64 `min:"1" type:"integer"`
// Whether the Maintenance Window is enabled.
Enabled *bool `type:"boolean"`
// The name of the Maintenance Window.
Name *string `min:"3" type:"string"`
// The schedule of the Maintenance Window in the form of a cron or rate expression.
Schedule *string `min:"1" type:"string"`
// The ID of the created Maintenance Window.
WindowId *string `min:"20" type:"string"`
}
// String returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateMaintenanceWindowOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
2016-12-02 15:37:53 +01:00
func (s UpdateMaintenanceWindowOutput) GoString() string {
return s.String()
}
2016-12-02 15:37:53 +01:00
// SetAllowUnassociatedTargets sets the AllowUnassociatedTargets field's value.
func (s *UpdateMaintenanceWindowOutput) SetAllowUnassociatedTargets(v bool) *UpdateMaintenanceWindowOutput {
s.AllowUnassociatedTargets = &v
return s
}
// SetCutoff sets the Cutoff field's value.
func (s *UpdateMaintenanceWindowOutput) SetCutoff(v int64) *UpdateMaintenanceWindowOutput {
s.Cutoff = &v
return s
}
// SetDuration sets the Duration field's value.
func (s *UpdateMaintenanceWindowOutput) SetDuration(v int64) *UpdateMaintenanceWindowOutput {
s.Duration = &v
return s
}
// SetEnabled sets the Enabled field's value.
func (s *UpdateMaintenanceWindowOutput) SetEnabled(v bool) *UpdateMaintenanceWindowOutput {
s.Enabled = &v
return s
}
// SetName sets the Name field's value.
func (s *UpdateMaintenanceWindowOutput) SetName(v string) *UpdateMaintenanceWindowOutput {
s.Name = &v
return s
}
// SetSchedule sets the Schedule field's value.
func (s *UpdateMaintenanceWindowOutput) SetSchedule(v string) *UpdateMaintenanceWindowOutput {
s.Schedule = &v
return s
}
// SetWindowId sets the WindowId field's value.
func (s *UpdateMaintenanceWindowOutput) SetWindowId(v string) *UpdateMaintenanceWindowOutput {
s.WindowId = &v
2016-11-19 19:41:01 +01:00
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateManagedInstanceRoleRequest
type UpdateManagedInstanceRoleInput struct {
_ struct{} `type:"structure"`
// The IAM role you want to assign or change.
2016-10-17 23:21:08 +02:00
//
// IamRole is a required field
IamRole *string `type:"string" required:"true"`
// The ID of the managed instance where you want to update the role.
2016-10-17 23:21:08 +02:00
//
// InstanceId is a required field
InstanceId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s UpdateManagedInstanceRoleInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateManagedInstanceRoleInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *UpdateManagedInstanceRoleInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "UpdateManagedInstanceRoleInput"}
if s.IamRole == nil {
invalidParams.Add(request.NewErrParamRequired("IamRole"))
}
if s.InstanceId == nil {
invalidParams.Add(request.NewErrParamRequired("InstanceId"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIamRole sets the IamRole field's value.
func (s *UpdateManagedInstanceRoleInput) SetIamRole(v string) *UpdateManagedInstanceRoleInput {
s.IamRole = &v
return s
}
// SetInstanceId sets the InstanceId field's value.
func (s *UpdateManagedInstanceRoleInput) SetInstanceId(v string) *UpdateManagedInstanceRoleInput {
s.InstanceId = &v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateManagedInstanceRoleResult
type UpdateManagedInstanceRoleOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s UpdateManagedInstanceRoleOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateManagedInstanceRoleOutput) GoString() string {
return s.String()
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdatePatchBaselineRequest
type UpdatePatchBaselineInput struct {
_ struct{} `type:"structure"`
// A set of rules used to include patches in the baseline.
ApprovalRules *PatchRuleGroup `type:"structure"`
// A list of explicitly approved patches for the baseline.
ApprovedPatches []*string `type:"list"`
// The ID of the patch baseline to update.
//
// BaselineId is a required field
BaselineId *string `min:"20" type:"string" required:"true"`
// A description of the patch baseline.
Description *string `min:"1" type:"string"`
// A set of global filters used to exclude patches from the baseline.
GlobalFilters *PatchFilterGroup `type:"structure"`
// The name of the patch baseline.
Name *string `min:"3" type:"string"`
// A list of explicitly rejected patches for the baseline.
RejectedPatches []*string `type:"list"`
}
// String returns the string representation
func (s UpdatePatchBaselineInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdatePatchBaselineInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *UpdatePatchBaselineInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "UpdatePatchBaselineInput"}
if s.BaselineId == nil {
invalidParams.Add(request.NewErrParamRequired("BaselineId"))
}
if s.BaselineId != nil && len(*s.BaselineId) < 20 {
invalidParams.Add(request.NewErrParamMinLen("BaselineId", 20))
}
if s.Description != nil && len(*s.Description) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Description", 1))
}
if s.Name != nil && len(*s.Name) < 3 {
invalidParams.Add(request.NewErrParamMinLen("Name", 3))
}
if s.ApprovalRules != nil {
if err := s.ApprovalRules.Validate(); err != nil {
invalidParams.AddNested("ApprovalRules", err.(request.ErrInvalidParams))
}
}
if s.GlobalFilters != nil {
if err := s.GlobalFilters.Validate(); err != nil {
invalidParams.AddNested("GlobalFilters", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetApprovalRules sets the ApprovalRules field's value.
func (s *UpdatePatchBaselineInput) SetApprovalRules(v *PatchRuleGroup) *UpdatePatchBaselineInput {
s.ApprovalRules = v
return s
}
// SetApprovedPatches sets the ApprovedPatches field's value.
func (s *UpdatePatchBaselineInput) SetApprovedPatches(v []*string) *UpdatePatchBaselineInput {
s.ApprovedPatches = v
return s
}
// SetBaselineId sets the BaselineId field's value.
func (s *UpdatePatchBaselineInput) SetBaselineId(v string) *UpdatePatchBaselineInput {
s.BaselineId = &v
return s
}
// SetDescription sets the Description field's value.
func (s *UpdatePatchBaselineInput) SetDescription(v string) *UpdatePatchBaselineInput {
s.Description = &v
return s
}
// SetGlobalFilters sets the GlobalFilters field's value.
func (s *UpdatePatchBaselineInput) SetGlobalFilters(v *PatchFilterGroup) *UpdatePatchBaselineInput {
s.GlobalFilters = v
return s
}
// SetName sets the Name field's value.
func (s *UpdatePatchBaselineInput) SetName(v string) *UpdatePatchBaselineInput {
s.Name = &v
return s
}
// SetRejectedPatches sets the RejectedPatches field's value.
func (s *UpdatePatchBaselineInput) SetRejectedPatches(v []*string) *UpdatePatchBaselineInput {
s.RejectedPatches = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdatePatchBaselineResult
type UpdatePatchBaselineOutput struct {
_ struct{} `type:"structure"`
// A set of rules used to include patches in the baseline.
ApprovalRules *PatchRuleGroup `type:"structure"`
// A list of explicitly approved patches for the baseline.
ApprovedPatches []*string `type:"list"`
// The ID of the deleted patch baseline.
BaselineId *string `min:"20" type:"string"`
// The date when the patch baseline was created.
CreatedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// A description of the Patch Baseline.
Description *string `min:"1" type:"string"`
// A set of global filters used to exclude patches from the baseline.
GlobalFilters *PatchFilterGroup `type:"structure"`
// The date when the patch baseline was last modified.
ModifiedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The name of the patch baseline.
Name *string `min:"3" type:"string"`
// A list of explicitly rejected patches for the baseline.
RejectedPatches []*string `type:"list"`
}
// String returns the string representation
func (s UpdatePatchBaselineOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdatePatchBaselineOutput) GoString() string {
return s.String()
}
// SetApprovalRules sets the ApprovalRules field's value.
func (s *UpdatePatchBaselineOutput) SetApprovalRules(v *PatchRuleGroup) *UpdatePatchBaselineOutput {
s.ApprovalRules = v
return s
}
// SetApprovedPatches sets the ApprovedPatches field's value.
func (s *UpdatePatchBaselineOutput) SetApprovedPatches(v []*string) *UpdatePatchBaselineOutput {
s.ApprovedPatches = v
return s
}
// SetBaselineId sets the BaselineId field's value.
func (s *UpdatePatchBaselineOutput) SetBaselineId(v string) *UpdatePatchBaselineOutput {
s.BaselineId = &v
return s
}
// SetCreatedDate sets the CreatedDate field's value.
func (s *UpdatePatchBaselineOutput) SetCreatedDate(v time.Time) *UpdatePatchBaselineOutput {
s.CreatedDate = &v
return s
}
// SetDescription sets the Description field's value.
func (s *UpdatePatchBaselineOutput) SetDescription(v string) *UpdatePatchBaselineOutput {
s.Description = &v
return s
}
// SetGlobalFilters sets the GlobalFilters field's value.
func (s *UpdatePatchBaselineOutput) SetGlobalFilters(v *PatchFilterGroup) *UpdatePatchBaselineOutput {
s.GlobalFilters = v
return s
}
// SetModifiedDate sets the ModifiedDate field's value.
func (s *UpdatePatchBaselineOutput) SetModifiedDate(v time.Time) *UpdatePatchBaselineOutput {
s.ModifiedDate = &v
return s
}
// SetName sets the Name field's value.
func (s *UpdatePatchBaselineOutput) SetName(v string) *UpdatePatchBaselineOutput {
s.Name = &v
return s
}
// SetRejectedPatches sets the RejectedPatches field's value.
func (s *UpdatePatchBaselineOutput) SetRejectedPatches(v []*string) *UpdatePatchBaselineOutput {
s.RejectedPatches = v
return s
}
const (
2016-10-17 23:21:08 +02:00
// AssociationFilterKeyInstanceId is a AssociationFilterKey enum value
AssociationFilterKeyInstanceId = "InstanceId"
2016-10-17 23:21:08 +02:00
// AssociationFilterKeyName is a AssociationFilterKey enum value
AssociationFilterKeyName = "Name"
2016-12-02 15:37:53 +01:00
// AssociationFilterKeyAssociationId is a AssociationFilterKey enum value
AssociationFilterKeyAssociationId = "AssociationId"
// AssociationFilterKeyAssociationStatusName is a AssociationFilterKey enum value
AssociationFilterKeyAssociationStatusName = "AssociationStatusName"
// AssociationFilterKeyLastExecutedBefore is a AssociationFilterKey enum value
AssociationFilterKeyLastExecutedBefore = "LastExecutedBefore"
// AssociationFilterKeyLastExecutedAfter is a AssociationFilterKey enum value
AssociationFilterKeyLastExecutedAfter = "LastExecutedAfter"
)
const (
2016-10-17 23:21:08 +02:00
// AssociationStatusNamePending is a AssociationStatusName enum value
AssociationStatusNamePending = "Pending"
2016-10-17 23:21:08 +02:00
// AssociationStatusNameSuccess is a AssociationStatusName enum value
AssociationStatusNameSuccess = "Success"
2016-10-17 23:21:08 +02:00
// AssociationStatusNameFailed is a AssociationStatusName enum value
AssociationStatusNameFailed = "Failed"
)
2016-12-02 15:37:53 +01:00
const (
// AutomationExecutionFilterKeyDocumentNamePrefix is a AutomationExecutionFilterKey enum value
AutomationExecutionFilterKeyDocumentNamePrefix = "DocumentNamePrefix"
// AutomationExecutionFilterKeyExecutionStatus is a AutomationExecutionFilterKey enum value
AutomationExecutionFilterKeyExecutionStatus = "ExecutionStatus"
)
const (
// AutomationExecutionStatusPending is a AutomationExecutionStatus enum value
AutomationExecutionStatusPending = "Pending"
// AutomationExecutionStatusInProgress is a AutomationExecutionStatus enum value
AutomationExecutionStatusInProgress = "InProgress"
// AutomationExecutionStatusSuccess is a AutomationExecutionStatus enum value
AutomationExecutionStatusSuccess = "Success"
// AutomationExecutionStatusTimedOut is a AutomationExecutionStatus enum value
AutomationExecutionStatusTimedOut = "TimedOut"
// AutomationExecutionStatusCancelled is a AutomationExecutionStatus enum value
AutomationExecutionStatusCancelled = "Cancelled"
// AutomationExecutionStatusFailed is a AutomationExecutionStatus enum value
AutomationExecutionStatusFailed = "Failed"
)
const (
2016-10-17 23:21:08 +02:00
// CommandFilterKeyInvokedAfter is a CommandFilterKey enum value
CommandFilterKeyInvokedAfter = "InvokedAfter"
2016-10-17 23:21:08 +02:00
// CommandFilterKeyInvokedBefore is a CommandFilterKey enum value
CommandFilterKeyInvokedBefore = "InvokedBefore"
2016-10-17 23:21:08 +02:00
// CommandFilterKeyStatus is a CommandFilterKey enum value
CommandFilterKeyStatus = "Status"
)
const (
2016-10-17 23:21:08 +02:00
// CommandInvocationStatusPending is a CommandInvocationStatus enum value
CommandInvocationStatusPending = "Pending"
2016-10-17 23:21:08 +02:00
// CommandInvocationStatusInProgress is a CommandInvocationStatus enum value
CommandInvocationStatusInProgress = "InProgress"
2016-10-17 23:21:08 +02:00
2016-12-02 15:37:53 +01:00
// CommandInvocationStatusDelayed is a CommandInvocationStatus enum value
CommandInvocationStatusDelayed = "Delayed"
2016-10-17 23:21:08 +02:00
// CommandInvocationStatusSuccess is a CommandInvocationStatus enum value
CommandInvocationStatusSuccess = "Success"
2016-10-17 23:21:08 +02:00
// CommandInvocationStatusCancelled is a CommandInvocationStatus enum value
CommandInvocationStatusCancelled = "Cancelled"
2016-10-17 23:21:08 +02:00
2016-12-02 15:37:53 +01:00
// CommandInvocationStatusTimedOut is a CommandInvocationStatus enum value
CommandInvocationStatusTimedOut = "TimedOut"
2016-10-17 23:21:08 +02:00
// CommandInvocationStatusFailed is a CommandInvocationStatus enum value
CommandInvocationStatusFailed = "Failed"
2016-12-02 15:37:53 +01:00
// CommandInvocationStatusCancelling is a CommandInvocationStatus enum value
CommandInvocationStatusCancelling = "Cancelling"
)
const (
2016-10-17 23:21:08 +02:00
// CommandPluginStatusPending is a CommandPluginStatus enum value
CommandPluginStatusPending = "Pending"
2016-10-17 23:21:08 +02:00
// CommandPluginStatusInProgress is a CommandPluginStatus enum value
CommandPluginStatusInProgress = "InProgress"
2016-10-17 23:21:08 +02:00
// CommandPluginStatusSuccess is a CommandPluginStatus enum value
CommandPluginStatusSuccess = "Success"
2016-10-17 23:21:08 +02:00
// CommandPluginStatusTimedOut is a CommandPluginStatus enum value
CommandPluginStatusTimedOut = "TimedOut"
2016-10-17 23:21:08 +02:00
// CommandPluginStatusCancelled is a CommandPluginStatus enum value
CommandPluginStatusCancelled = "Cancelled"
2016-10-17 23:21:08 +02:00
// CommandPluginStatusFailed is a CommandPluginStatus enum value
CommandPluginStatusFailed = "Failed"
)
const (
2016-10-17 23:21:08 +02:00
// CommandStatusPending is a CommandStatus enum value
CommandStatusPending = "Pending"
2016-10-17 23:21:08 +02:00
// CommandStatusInProgress is a CommandStatus enum value
CommandStatusInProgress = "InProgress"
2016-10-17 23:21:08 +02:00
// CommandStatusSuccess is a CommandStatus enum value
CommandStatusSuccess = "Success"
2016-10-17 23:21:08 +02:00
// CommandStatusCancelled is a CommandStatus enum value
CommandStatusCancelled = "Cancelled"
2016-10-17 23:21:08 +02:00
// CommandStatusFailed is a CommandStatus enum value
CommandStatusFailed = "Failed"
2016-12-02 15:37:53 +01:00
// CommandStatusTimedOut is a CommandStatus enum value
CommandStatusTimedOut = "TimedOut"
// CommandStatusCancelling is a CommandStatus enum value
CommandStatusCancelling = "Cancelling"
)
const (
2016-10-17 23:21:08 +02:00
// DescribeActivationsFilterKeysActivationIds is a DescribeActivationsFilterKeys enum value
DescribeActivationsFilterKeysActivationIds = "ActivationIds"
2016-10-17 23:21:08 +02:00
// DescribeActivationsFilterKeysDefaultInstanceName is a DescribeActivationsFilterKeys enum value
DescribeActivationsFilterKeysDefaultInstanceName = "DefaultInstanceName"
2016-10-17 23:21:08 +02:00
// DescribeActivationsFilterKeysIamRole is a DescribeActivationsFilterKeys enum value
DescribeActivationsFilterKeysIamRole = "IamRole"
)
const (
2016-10-17 23:21:08 +02:00
// DocumentFilterKeyName is a DocumentFilterKey enum value
DocumentFilterKeyName = "Name"
2016-10-17 23:21:08 +02:00
// DocumentFilterKeyOwner is a DocumentFilterKey enum value
DocumentFilterKeyOwner = "Owner"
2016-10-17 23:21:08 +02:00
// DocumentFilterKeyPlatformTypes is a DocumentFilterKey enum value
DocumentFilterKeyPlatformTypes = "PlatformTypes"
2016-12-02 15:37:53 +01:00
// DocumentFilterKeyDocumentType is a DocumentFilterKey enum value
DocumentFilterKeyDocumentType = "DocumentType"
)
const (
2016-10-17 23:21:08 +02:00
// DocumentHashTypeSha256 is a DocumentHashType enum value
DocumentHashTypeSha256 = "Sha256"
2016-10-17 23:21:08 +02:00
// DocumentHashTypeSha1 is a DocumentHashType enum value
DocumentHashTypeSha1 = "Sha1"
)
const (
2016-10-17 23:21:08 +02:00
// DocumentParameterTypeString is a DocumentParameterType enum value
DocumentParameterTypeString = "String"
2016-10-17 23:21:08 +02:00
// DocumentParameterTypeStringList is a DocumentParameterType enum value
DocumentParameterTypeStringList = "StringList"
)
const (
2016-10-17 23:21:08 +02:00
// DocumentPermissionTypeShare is a DocumentPermissionType enum value
DocumentPermissionTypeShare = "Share"
)
const (
2016-10-17 23:21:08 +02:00
// DocumentStatusCreating is a DocumentStatus enum value
DocumentStatusCreating = "Creating"
2016-10-17 23:21:08 +02:00
// DocumentStatusActive is a DocumentStatus enum value
DocumentStatusActive = "Active"
2016-10-17 23:21:08 +02:00
2016-12-02 15:37:53 +01:00
// DocumentStatusUpdating is a DocumentStatus enum value
DocumentStatusUpdating = "Updating"
2016-10-17 23:21:08 +02:00
// DocumentStatusDeleting is a DocumentStatus enum value
DocumentStatusDeleting = "Deleting"
)
2016-12-02 15:37:53 +01:00
const (
// DocumentTypeCommand is a DocumentType enum value
DocumentTypeCommand = "Command"
// DocumentTypePolicy is a DocumentType enum value
DocumentTypePolicy = "Policy"
// DocumentTypeAutomation is a DocumentType enum value
DocumentTypeAutomation = "Automation"
)
const (
2016-10-17 23:21:08 +02:00
// FaultClient is a Fault enum value
FaultClient = "Client"
2016-10-17 23:21:08 +02:00
// FaultServer is a Fault enum value
FaultServer = "Server"
2016-10-17 23:21:08 +02:00
// FaultUnknown is a Fault enum value
FaultUnknown = "Unknown"
)
const (
2016-10-17 23:21:08 +02:00
// InstanceInformationFilterKeyInstanceIds is a InstanceInformationFilterKey enum value
InstanceInformationFilterKeyInstanceIds = "InstanceIds"
2016-10-17 23:21:08 +02:00
// InstanceInformationFilterKeyAgentVersion is a InstanceInformationFilterKey enum value
InstanceInformationFilterKeyAgentVersion = "AgentVersion"
2016-10-17 23:21:08 +02:00
// InstanceInformationFilterKeyPingStatus is a InstanceInformationFilterKey enum value
InstanceInformationFilterKeyPingStatus = "PingStatus"
2016-10-17 23:21:08 +02:00
// InstanceInformationFilterKeyPlatformTypes is a InstanceInformationFilterKey enum value
InstanceInformationFilterKeyPlatformTypes = "PlatformTypes"
2016-10-17 23:21:08 +02:00
// InstanceInformationFilterKeyActivationIds is a InstanceInformationFilterKey enum value
InstanceInformationFilterKeyActivationIds = "ActivationIds"
2016-10-17 23:21:08 +02:00
// InstanceInformationFilterKeyIamRole is a InstanceInformationFilterKey enum value
InstanceInformationFilterKeyIamRole = "IamRole"
2016-10-17 23:21:08 +02:00
// InstanceInformationFilterKeyResourceType is a InstanceInformationFilterKey enum value
InstanceInformationFilterKeyResourceType = "ResourceType"
2016-12-02 15:37:53 +01:00
// InstanceInformationFilterKeyAssociationStatus is a InstanceInformationFilterKey enum value
InstanceInformationFilterKeyAssociationStatus = "AssociationStatus"
)
const (
// InstancePatchStateOperatorTypeEqual is a InstancePatchStateOperatorType enum value
InstancePatchStateOperatorTypeEqual = "Equal"
// InstancePatchStateOperatorTypeNotEqual is a InstancePatchStateOperatorType enum value
InstancePatchStateOperatorTypeNotEqual = "NotEqual"
// InstancePatchStateOperatorTypeLessThan is a InstancePatchStateOperatorType enum value
InstancePatchStateOperatorTypeLessThan = "LessThan"
// InstancePatchStateOperatorTypeGreaterThan is a InstancePatchStateOperatorType enum value
InstancePatchStateOperatorTypeGreaterThan = "GreaterThan"
)
2016-12-02 15:37:53 +01:00
const (
// InventoryAttributeDataTypeString is a InventoryAttributeDataType enum value
InventoryAttributeDataTypeString = "string"
// InventoryAttributeDataTypeNumber is a InventoryAttributeDataType enum value
InventoryAttributeDataTypeNumber = "number"
)
const (
// InventoryQueryOperatorTypeEqual is a InventoryQueryOperatorType enum value
InventoryQueryOperatorTypeEqual = "Equal"
// InventoryQueryOperatorTypeNotEqual is a InventoryQueryOperatorType enum value
InventoryQueryOperatorTypeNotEqual = "NotEqual"
// InventoryQueryOperatorTypeBeginWith is a InventoryQueryOperatorType enum value
InventoryQueryOperatorTypeBeginWith = "BeginWith"
// InventoryQueryOperatorTypeLessThan is a InventoryQueryOperatorType enum value
InventoryQueryOperatorTypeLessThan = "LessThan"
// InventoryQueryOperatorTypeGreaterThan is a InventoryQueryOperatorType enum value
InventoryQueryOperatorTypeGreaterThan = "GreaterThan"
)
const (
// MaintenanceWindowExecutionStatusPending is a MaintenanceWindowExecutionStatus enum value
MaintenanceWindowExecutionStatusPending = "PENDING"
// MaintenanceWindowExecutionStatusInProgress is a MaintenanceWindowExecutionStatus enum value
MaintenanceWindowExecutionStatusInProgress = "IN_PROGRESS"
// MaintenanceWindowExecutionStatusSuccess is a MaintenanceWindowExecutionStatus enum value
MaintenanceWindowExecutionStatusSuccess = "SUCCESS"
// MaintenanceWindowExecutionStatusFailed is a MaintenanceWindowExecutionStatus enum value
MaintenanceWindowExecutionStatusFailed = "FAILED"
// MaintenanceWindowExecutionStatusTimedOut is a MaintenanceWindowExecutionStatus enum value
MaintenanceWindowExecutionStatusTimedOut = "TIMED_OUT"
// MaintenanceWindowExecutionStatusCancelling is a MaintenanceWindowExecutionStatus enum value
MaintenanceWindowExecutionStatusCancelling = "CANCELLING"
// MaintenanceWindowExecutionStatusCancelled is a MaintenanceWindowExecutionStatus enum value
MaintenanceWindowExecutionStatusCancelled = "CANCELLED"
// MaintenanceWindowExecutionStatusSkippedOverlapping is a MaintenanceWindowExecutionStatus enum value
MaintenanceWindowExecutionStatusSkippedOverlapping = "SKIPPED_OVERLAPPING"
)
const (
// MaintenanceWindowResourceTypeInstance is a MaintenanceWindowResourceType enum value
MaintenanceWindowResourceTypeInstance = "INSTANCE"
)
const (
// MaintenanceWindowTaskTypeRunCommand is a MaintenanceWindowTaskType enum value
MaintenanceWindowTaskTypeRunCommand = "RUN_COMMAND"
)
const (
2016-10-17 23:21:08 +02:00
// NotificationEventAll is a NotificationEvent enum value
NotificationEventAll = "All"
2016-10-17 23:21:08 +02:00
// NotificationEventInProgress is a NotificationEvent enum value
NotificationEventInProgress = "InProgress"
2016-10-17 23:21:08 +02:00
// NotificationEventSuccess is a NotificationEvent enum value
NotificationEventSuccess = "Success"
2016-10-17 23:21:08 +02:00
// NotificationEventTimedOut is a NotificationEvent enum value
NotificationEventTimedOut = "TimedOut"
2016-10-17 23:21:08 +02:00
// NotificationEventCancelled is a NotificationEvent enum value
NotificationEventCancelled = "Cancelled"
2016-10-17 23:21:08 +02:00
// NotificationEventFailed is a NotificationEvent enum value
NotificationEventFailed = "Failed"
)
const (
2016-10-17 23:21:08 +02:00
// NotificationTypeCommand is a NotificationType enum value
NotificationTypeCommand = "Command"
2016-10-17 23:21:08 +02:00
// NotificationTypeInvocation is a NotificationType enum value
NotificationTypeInvocation = "Invocation"
)
2016-12-02 15:37:53 +01:00
const (
// ParameterTypeString is a ParameterType enum value
ParameterTypeString = "String"
// ParameterTypeStringList is a ParameterType enum value
ParameterTypeStringList = "StringList"
// ParameterTypeSecureString is a ParameterType enum value
ParameterTypeSecureString = "SecureString"
)
const (
// ParametersFilterKeyName is a ParametersFilterKey enum value
ParametersFilterKeyName = "Name"
// ParametersFilterKeyType is a ParametersFilterKey enum value
ParametersFilterKeyType = "Type"
// ParametersFilterKeyKeyId is a ParametersFilterKey enum value
ParametersFilterKeyKeyId = "KeyId"
)
const (
// PatchComplianceDataStateInstalled is a PatchComplianceDataState enum value
PatchComplianceDataStateInstalled = "INSTALLED"
// PatchComplianceDataStateInstalledOther is a PatchComplianceDataState enum value
PatchComplianceDataStateInstalledOther = "INSTALLED_OTHER"
// PatchComplianceDataStateMissing is a PatchComplianceDataState enum value
PatchComplianceDataStateMissing = "MISSING"
// PatchComplianceDataStateNotApplicable is a PatchComplianceDataState enum value
PatchComplianceDataStateNotApplicable = "NOT_APPLICABLE"
// PatchComplianceDataStateFailed is a PatchComplianceDataState enum value
PatchComplianceDataStateFailed = "FAILED"
)
const (
// PatchDeploymentStatusApproved is a PatchDeploymentStatus enum value
PatchDeploymentStatusApproved = "APPROVED"
// PatchDeploymentStatusPendingApproval is a PatchDeploymentStatus enum value
PatchDeploymentStatusPendingApproval = "PENDING_APPROVAL"
// PatchDeploymentStatusExplicitApproved is a PatchDeploymentStatus enum value
PatchDeploymentStatusExplicitApproved = "EXPLICIT_APPROVED"
// PatchDeploymentStatusExplicitRejected is a PatchDeploymentStatus enum value
PatchDeploymentStatusExplicitRejected = "EXPLICIT_REJECTED"
)
const (
// PatchFilterKeyProduct is a PatchFilterKey enum value
PatchFilterKeyProduct = "PRODUCT"
// PatchFilterKeyClassification is a PatchFilterKey enum value
PatchFilterKeyClassification = "CLASSIFICATION"
// PatchFilterKeyMsrcSeverity is a PatchFilterKey enum value
PatchFilterKeyMsrcSeverity = "MSRC_SEVERITY"
// PatchFilterKeyPatchId is a PatchFilterKey enum value
PatchFilterKeyPatchId = "PATCH_ID"
)
const (
// PatchOperationTypeScan is a PatchOperationType enum value
PatchOperationTypeScan = "Scan"
// PatchOperationTypeInstall is a PatchOperationType enum value
PatchOperationTypeInstall = "Install"
)
const (
2016-10-17 23:21:08 +02:00
// PingStatusOnline is a PingStatus enum value
PingStatusOnline = "Online"
2016-10-17 23:21:08 +02:00
// PingStatusConnectionLost is a PingStatus enum value
PingStatusConnectionLost = "ConnectionLost"
2016-10-17 23:21:08 +02:00
// PingStatusInactive is a PingStatus enum value
PingStatusInactive = "Inactive"
)
const (
2016-10-17 23:21:08 +02:00
// PlatformTypeWindows is a PlatformType enum value
PlatformTypeWindows = "Windows"
2016-10-17 23:21:08 +02:00
// PlatformTypeLinux is a PlatformType enum value
PlatformTypeLinux = "Linux"
)
const (
2016-10-17 23:21:08 +02:00
// ResourceTypeManagedInstance is a ResourceType enum value
ResourceTypeManagedInstance = "ManagedInstance"
2016-10-17 23:21:08 +02:00
// ResourceTypeDocument is a ResourceType enum value
ResourceTypeDocument = "Document"
2016-10-17 23:21:08 +02:00
// ResourceTypeEc2instance is a ResourceType enum value
ResourceTypeEc2instance = "EC2Instance"
)
const (
2016-10-17 23:21:08 +02:00
// ResourceTypeForTaggingManagedInstance is a ResourceTypeForTagging enum value
ResourceTypeForTaggingManagedInstance = "ManagedInstance"
2016-12-02 15:37:53 +01:00
// ResourceTypeForTaggingMaintenanceWindow is a ResourceTypeForTagging enum value
ResourceTypeForTaggingMaintenanceWindow = "MaintenanceWindow"
// ResourceTypeForTaggingParameter is a ResourceTypeForTagging enum value
ResourceTypeForTaggingParameter = "Parameter"
)