types

package
v0.27.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 17, 2020 License: Apache-2.0 Imports: 3 Imported by: 131

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccountSharingInfo

type AccountSharingInfo struct {

	// The AWS account ID where the current document is shared.
	AccountId *string

	// The version of the current document shared with the account.
	SharedDocumentVersion *string
}

Information includes the AWS account ID where the current document is shared and the version shared with that account.

type Activation

type Activation struct {

	// The ID created by Systems Manager when you submitted the activation.
	ActivationId *string

	// The date the activation was created.
	CreatedDate *time.Time

	// A name for the managed instance when it is created.
	DefaultInstanceName *string

	// A user defined description of the activation.
	Description *string

	// The date when this activation can no longer be used to register managed
	// instances.
	ExpirationDate *time.Time

	// Whether or not the activation is expired.
	Expired *bool

	// The Amazon Identity and Access Management (IAM) role to assign to the managed
	// instance.
	IamRole *string

	// The maximum number of managed instances that can be registered using this
	// activation.
	RegistrationLimit *int32

	// The number of managed instances already registered with this activation.
	RegistrationsCount *int32

	// Tags assigned to the activation.
	Tags []*Tag
}

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.

type AlreadyExistsException

type AlreadyExistsException struct {
	Message *string
}

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.

func (*AlreadyExistsException) Error

func (e *AlreadyExistsException) Error() string

func (*AlreadyExistsException) ErrorCode

func (e *AlreadyExistsException) ErrorCode() string

func (*AlreadyExistsException) ErrorFault

func (e *AlreadyExistsException) ErrorFault() smithy.ErrorFault

func (*AlreadyExistsException) ErrorMessage

func (e *AlreadyExistsException) ErrorMessage() string

type AssociatedInstances

type AssociatedInstances struct {
	Message *string
}

You must disassociate a document from all instances before you can delete it.

func (*AssociatedInstances) Error

func (e *AssociatedInstances) Error() string

func (*AssociatedInstances) ErrorCode

func (e *AssociatedInstances) ErrorCode() string

func (*AssociatedInstances) ErrorFault

func (e *AssociatedInstances) ErrorFault() smithy.ErrorFault

func (*AssociatedInstances) ErrorMessage

func (e *AssociatedInstances) ErrorMessage() string

type Association

type Association struct {

	// 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

	// The association name.
	AssociationName *string

	// The association version.
	AssociationVersion *string

	// The version of the document used in the association.
	DocumentVersion *string

	// The ID of the instance.
	InstanceId *string

	// The date on which the association was last run.
	LastExecutionDate *time.Time

	// The name of the Systems Manager document.
	Name *string

	// Information about the association.
	Overview *AssociationOverview

	// A cron expression that specifies a schedule when the association runs.
	ScheduleExpression *string

	// The instances targeted by the request to create an association.
	Targets []*Target
}

Describes an association of a Systems Manager document and an instance.

type AssociationAlreadyExists

type AssociationAlreadyExists struct {
	Message *string
}

The specified association already exists.

func (*AssociationAlreadyExists) Error

func (e *AssociationAlreadyExists) Error() string

func (*AssociationAlreadyExists) ErrorCode

func (e *AssociationAlreadyExists) ErrorCode() string

func (*AssociationAlreadyExists) ErrorFault

func (e *AssociationAlreadyExists) ErrorFault() smithy.ErrorFault

func (*AssociationAlreadyExists) ErrorMessage

func (e *AssociationAlreadyExists) ErrorMessage() string

type AssociationComplianceSeverity

type AssociationComplianceSeverity string
const (
	AssociationComplianceSeverityCritical    AssociationComplianceSeverity = "CRITICAL"
	AssociationComplianceSeverityHigh        AssociationComplianceSeverity = "HIGH"
	AssociationComplianceSeverityMedium      AssociationComplianceSeverity = "MEDIUM"
	AssociationComplianceSeverityLow         AssociationComplianceSeverity = "LOW"
	AssociationComplianceSeverityUnspecified AssociationComplianceSeverity = "UNSPECIFIED"
)

Enum values for AssociationComplianceSeverity

type AssociationDescription

type AssociationDescription struct {

	// By default, when you create a new associations, the system runs it immediately
	// after it is created and then according to the schedule you specified. Specify
	// this option if you don't want an association to run immediately after you create
	// it.
	ApplyOnlyAtCronInterval *bool

	// The association ID.
	AssociationId *string

	// The association name.
	AssociationName *string

	// The association version.
	AssociationVersion *string

	// Specify the target for the association. This target is required for associations
	// that use an Automation document and target resources by using rate controls.
	AutomationTargetParameterName *string

	// The severity level that is assigned to the association.
	ComplianceSeverity AssociationComplianceSeverity

	// The date when the association was made.
	Date *time.Time

	// The document version.
	DocumentVersion *string

	// The ID of the instance.
	InstanceId *string

	// The date on which the association was last run.
	LastExecutionDate *time.Time

	// The last date on which the association was successfully run.
	LastSuccessfulExecutionDate *time.Time

	// The date when the association was last updated.
	LastUpdateAssociationDate *time.Time

	// The maximum number of targets allowed to run the association at the same time.
	// You can specify a number, for example 10, or a percentage of the target set, for
	// example 10%. The default value is 100%, which means all targets run the
	// association at the same time. If a new instance starts and attempts to run an
	// association while Systems Manager is running MaxConcurrency associations, the
	// association is allowed to run. During the next association interval, the new
	// instance will process its association within the limit specified for
	// MaxConcurrency.
	MaxConcurrency *string

	// The number of errors that are allowed before the system stops sending requests
	// to run the association on additional targets. You can specify either an absolute
	// number of errors, for example 10, or a percentage of the target set, for example
	// 10%. If you specify 3, for example, the system stops sending requests when the
	// fourth error is received. If you specify 0, then the system stops sending
	// requests after the first error is returned. If you run an association on 50
	// instances and set MaxError to 10%, then the system stops sending the request
	// when the sixth error is received. Executions that are already running an
	// association when MaxErrors is reached are allowed to complete, but some of these
	// executions may fail as well. If you need to ensure that there won't be more than
	// max-errors failed executions, set MaxConcurrency to 1 so that executions proceed
	// one at a time.
	MaxErrors *string

	// The name of the Systems Manager document.
	Name *string

	// An S3 bucket where you want to store the output details of the request.
	OutputLocation *InstanceAssociationOutputLocation

	// Information about the association.
	Overview *AssociationOverview

	// A description of the parameters for a document.
	Parameters map[string][]*string

	// A cron expression that specifies a schedule when the association runs.
	ScheduleExpression *string

	// The association status.
	Status *AssociationStatus

	// The mode for generating association compliance. You can specify AUTO or MANUAL.
	// In AUTO mode, the system uses the status of the association execution to
	// determine the compliance status. If the association execution runs successfully,
	// then the association is COMPLIANT. If the association execution doesn't run
	// successfully, the association is NON-COMPLIANT. In MANUAL mode, you must specify
	// the AssociationId as a parameter for the PutComplianceItems API action. In this
	// case, compliance data is not managed by State Manager. It is managed by your
	// direct call to the PutComplianceItems API action. By default, all associations
	// use AUTO mode.
	SyncCompliance AssociationSyncCompliance

	// The instances targeted by the request.
	Targets []*Target
}

Describes the parameters for a document.

type AssociationDoesNotExist

type AssociationDoesNotExist struct {
	Message *string
}

The specified association does not exist.

func (*AssociationDoesNotExist) Error

func (e *AssociationDoesNotExist) Error() string

func (*AssociationDoesNotExist) ErrorCode

func (e *AssociationDoesNotExist) ErrorCode() string

func (*AssociationDoesNotExist) ErrorFault

func (e *AssociationDoesNotExist) ErrorFault() smithy.ErrorFault

func (*AssociationDoesNotExist) ErrorMessage

func (e *AssociationDoesNotExist) ErrorMessage() string

type AssociationExecution

type AssociationExecution struct {

	// The association ID.
	AssociationId *string

	// The association version.
	AssociationVersion *string

	// The time the execution started.
	CreatedTime *time.Time

	// Detailed status information about the execution.
	DetailedStatus *string

	// The execution ID for the association.
	ExecutionId *string

	// The date of the last execution.
	LastExecutionDate *time.Time

	// An aggregate status of the resources in the execution based on the status type.
	ResourceCountByStatus *string

	// The status of the association execution.
	Status *string
}

Includes information about the specified association.

type AssociationExecutionDoesNotExist

type AssociationExecutionDoesNotExist struct {
	Message *string
}

The specified execution ID does not exist. Verify the ID number and try again.

func (*AssociationExecutionDoesNotExist) Error

func (*AssociationExecutionDoesNotExist) ErrorCode

func (*AssociationExecutionDoesNotExist) ErrorFault

func (*AssociationExecutionDoesNotExist) ErrorMessage

func (e *AssociationExecutionDoesNotExist) ErrorMessage() string

type AssociationExecutionFilter

type AssociationExecutionFilter struct {

	// The key value used in the request.
	//
	// This member is required.
	Key AssociationExecutionFilterKey

	// The filter type specified in the request.
	//
	// This member is required.
	Type AssociationFilterOperatorType

	// The value specified for the key.
	//
	// This member is required.
	Value *string
}

Filters used in the request.

type AssociationExecutionFilterKey

type AssociationExecutionFilterKey string
const (
	AssociationExecutionFilterKeyExecutionid AssociationExecutionFilterKey = "ExecutionId"
	AssociationExecutionFilterKeyStatus      AssociationExecutionFilterKey = "Status"
	AssociationExecutionFilterKeyCreatedtime AssociationExecutionFilterKey = "CreatedTime"
)

Enum values for AssociationExecutionFilterKey

type AssociationExecutionTarget

type AssociationExecutionTarget struct {

	// The association ID.
	AssociationId *string

	// The association version.
	AssociationVersion *string

	// Detailed information about the execution status.
	DetailedStatus *string

	// The execution ID.
	ExecutionId *string

	// The date of the last execution.
	LastExecutionDate *time.Time

	// The location where the association details are saved.
	OutputSource *OutputSource

	// The resource ID, for example, the instance ID where the association ran.
	ResourceId *string

	// The resource type, for example, instance.
	ResourceType *string

	// The association execution status.
	Status *string
}

Includes information about the specified association execution.

type AssociationExecutionTargetsFilter

type AssociationExecutionTargetsFilter struct {

	// The key value used in the request.
	//
	// This member is required.
	Key AssociationExecutionTargetsFilterKey

	// The value specified for the key.
	//
	// This member is required.
	Value *string
}

Filters for the association execution.

type AssociationExecutionTargetsFilterKey

type AssociationExecutionTargetsFilterKey string
const (
	AssociationExecutionTargetsFilterKeyStatus       AssociationExecutionTargetsFilterKey = "Status"
	AssociationExecutionTargetsFilterKeyResourceid   AssociationExecutionTargetsFilterKey = "ResourceId"
	AssociationExecutionTargetsFilterKeyResourcetype AssociationExecutionTargetsFilterKey = "ResourceType"
)

Enum values for AssociationExecutionTargetsFilterKey

type AssociationFilter

type AssociationFilter struct {

	// The name of the filter.
	//
	// This member is required.
	Key AssociationFilterKey

	// The filter value.
	//
	// This member is required.
	Value *string
}

Describes a filter.

type AssociationFilterKey

type AssociationFilterKey string
const (
	AssociationFilterKeyInstanceid         AssociationFilterKey = "InstanceId"
	AssociationFilterKeyName               AssociationFilterKey = "Name"
	AssociationFilterKeyAssociationid      AssociationFilterKey = "AssociationId"
	AssociationFilterKeyStatus             AssociationFilterKey = "AssociationStatusName"
	AssociationFilterKeyLastexecutedbefore AssociationFilterKey = "LastExecutedBefore"
	AssociationFilterKeyLastexecutedafter  AssociationFilterKey = "LastExecutedAfter"
	AssociationFilterKeyAssociationname    AssociationFilterKey = "AssociationName"
	AssociationFilterKeyResourcegroupname  AssociationFilterKey = "ResourceGroupName"
)

Enum values for AssociationFilterKey

type AssociationFilterOperatorType

type AssociationFilterOperatorType string
const (
	AssociationFilterOperatorTypeEqual       AssociationFilterOperatorType = "EQUAL"
	AssociationFilterOperatorTypeLessthan    AssociationFilterOperatorType = "LESS_THAN"
	AssociationFilterOperatorTypeGreaterthan AssociationFilterOperatorType = "GREATER_THAN"
)

Enum values for AssociationFilterOperatorType

type AssociationLimitExceeded

type AssociationLimitExceeded struct {
	Message *string
}

You can have at most 2,000 active associations.

func (*AssociationLimitExceeded) Error

func (e *AssociationLimitExceeded) Error() string

func (*AssociationLimitExceeded) ErrorCode

func (e *AssociationLimitExceeded) ErrorCode() string

func (*AssociationLimitExceeded) ErrorFault

func (e *AssociationLimitExceeded) ErrorFault() smithy.ErrorFault

func (*AssociationLimitExceeded) ErrorMessage

func (e *AssociationLimitExceeded) ErrorMessage() string

type AssociationOverview

type AssociationOverview struct {

	// 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]*int32

	// A detailed status of the association.
	DetailedStatus *string

	// The status of the association. Status can be: Pending, Success, or Failed.
	Status *string
}

Information about the association.

type AssociationStatus

type AssociationStatus struct {

	// The date when the status changed.
	//
	// This member is required.
	Date *time.Time

	// The reason for the status.
	//
	// This member is required.
	Message *string

	// The status.
	//
	// This member is required.
	Name AssociationStatusName

	// A user-defined string.
	AdditionalInfo *string
}

Describes an association status.

type AssociationStatusName

type AssociationStatusName string
const (
	AssociationStatusNamePending AssociationStatusName = "Pending"
	AssociationStatusNameSuccess AssociationStatusName = "Success"
	AssociationStatusNameFailed  AssociationStatusName = "Failed"
)

Enum values for AssociationStatusName

type AssociationSyncCompliance

type AssociationSyncCompliance string
const (
	AssociationSyncComplianceAuto   AssociationSyncCompliance = "AUTO"
	AssociationSyncComplianceManual AssociationSyncCompliance = "MANUAL"
)

Enum values for AssociationSyncCompliance

type AssociationVersionInfo

type AssociationVersionInfo struct {

	// By default, when you create a new associations, the system runs it immediately
	// after it is created and then according to the schedule you specified. Specify
	// this option if you don't want an association to run immediately after you create
	// it.
	ApplyOnlyAtCronInterval *bool

	// The ID created by the system when the association was created.
	AssociationId *string

	// The name specified for the association version when the association version was
	// created.
	AssociationName *string

	// The association version.
	AssociationVersion *string

	// The severity level that is assigned to the association.
	ComplianceSeverity AssociationComplianceSeverity

	// The date the association version was created.
	CreatedDate *time.Time

	// The version of a Systems Manager document used when the association version was
	// created.
	DocumentVersion *string

	// The maximum number of targets allowed to run the association at the same time.
	// You can specify a number, for example 10, or a percentage of the target set, for
	// example 10%. The default value is 100%, which means all targets run the
	// association at the same time. If a new instance starts and attempts to run an
	// association while Systems Manager is running MaxConcurrency associations, the
	// association is allowed to run. During the next association interval, the new
	// instance will process its association within the limit specified for
	// MaxConcurrency.
	MaxConcurrency *string

	// The number of errors that are allowed before the system stops sending requests
	// to run the association on additional targets. You can specify either an absolute
	// number of errors, for example 10, or a percentage of the target set, for example
	// 10%. If you specify 3, for example, the system stops sending requests when the
	// fourth error is received. If you specify 0, then the system stops sending
	// requests after the first error is returned. If you run an association on 50
	// instances and set MaxError to 10%, then the system stops sending the request
	// when the sixth error is received. Executions that are already running an
	// association when MaxErrors is reached are allowed to complete, but some of these
	// executions may fail as well. If you need to ensure that there won't be more than
	// max-errors failed executions, set MaxConcurrency to 1 so that executions proceed
	// one at a time.
	MaxErrors *string

	// The name specified when the association was created.
	Name *string

	// The location in Amazon S3 specified for the association when the association
	// version was created.
	OutputLocation *InstanceAssociationOutputLocation

	// Parameters specified when the association version was created.
	Parameters map[string][]*string

	// The cron or rate schedule specified for the association when the association
	// version was created.
	ScheduleExpression *string

	// The mode for generating association compliance. You can specify AUTO or MANUAL.
	// In AUTO mode, the system uses the status of the association execution to
	// determine the compliance status. If the association execution runs successfully,
	// then the association is COMPLIANT. If the association execution doesn't run
	// successfully, the association is NON-COMPLIANT. In MANUAL mode, you must specify
	// the AssociationId as a parameter for the PutComplianceItems API action. In this
	// case, compliance data is not managed by State Manager. It is managed by your
	// direct call to the PutComplianceItems API action. By default, all associations
	// use AUTO mode.
	SyncCompliance AssociationSyncCompliance

	// The targets specified for the association when the association version was
	// created.
	Targets []*Target
}

Information about the association version.

type AssociationVersionLimitExceeded

type AssociationVersionLimitExceeded struct {
	Message *string
}

You have reached the maximum number versions allowed for an association. Each association has a limit of 1,000 versions.

func (*AssociationVersionLimitExceeded) Error

func (*AssociationVersionLimitExceeded) ErrorCode

func (e *AssociationVersionLimitExceeded) ErrorCode() string

func (*AssociationVersionLimitExceeded) ErrorFault

func (*AssociationVersionLimitExceeded) ErrorMessage

func (e *AssociationVersionLimitExceeded) ErrorMessage() string

type AttachmentContent

type AttachmentContent struct {

	// The cryptographic hash value of the document content.
	Hash *string

	// The hash algorithm used to calculate the hash value.
	HashType AttachmentHashType

	// The name of an attachment.
	Name *string

	// The size of an attachment in bytes.
	Size *int64

	// The URL location of the attachment content.
	Url *string
}

A structure that includes attributes that describe a document attachment.

type AttachmentHashType

type AttachmentHashType string
const (
	AttachmentHashTypeSha256 AttachmentHashType = "Sha256"
)

Enum values for AttachmentHashType

type AttachmentInformation

type AttachmentInformation struct {

	// The name of the attachment.
	Name *string
}

An attribute of an attachment, such as the attachment name.

type AttachmentsSource

type AttachmentsSource struct {

	// The key of a key-value pair that identifies the location of an attachment to a
	// document.
	Key AttachmentsSourceKey

	// The name of the document attachment file.
	Name *string

	// The value of a key-value pair that identifies the location of an attachment to a
	// document. The format for Value depends on the type of key you specify.
	//
	//     *
	// For the key SourceUrl, the value is an S3 bucket location. For example:
	// "Values": [ "s3://my-bucket/my-folder" ]
	//
	//     * For the key S3FileUrl, the value
	// is a file in an S3 bucket. For example: "Values": [
	// "s3://my-bucket/my-folder/my-file.py" ]
	//
	//     * For the key AttachmentReference,
	// the value is constructed from the name of another SSM document in your account,
	// a version number of that document, and a file attached to that document version
	// that you want to reuse. For example: "Values": [
	// "MyOtherDocument/3/my-other-file.py" ] However, if the SSM document is shared
	// with you from another account, the full SSM document ARN must be specified
	// instead of the document name only. For example: "Values": [
	// "arn:aws:ssm:us-east-2:111122223333:document/OtherAccountDocument/3/their-file.py"
	// ]
	Values []*string
}

Identifying information about a document attachment, including the file name and a key-value pair that identifies the location of an attachment to a document.

type AttachmentsSourceKey

type AttachmentsSourceKey string
const (
	AttachmentsSourceKeySourceurl           AttachmentsSourceKey = "SourceUrl"
	AttachmentsSourceKeyS3fileurl           AttachmentsSourceKey = "S3FileUrl"
	AttachmentsSourceKeyAttachmentreference AttachmentsSourceKey = "AttachmentReference"
)

Enum values for AttachmentsSourceKey

type AutomationDefinitionNotFoundException

type AutomationDefinitionNotFoundException struct {
	Message *string
}

An Automation document with the specified name could not be found.

func (*AutomationDefinitionNotFoundException) Error

func (*AutomationDefinitionNotFoundException) ErrorCode

func (*AutomationDefinitionNotFoundException) ErrorFault

func (*AutomationDefinitionNotFoundException) ErrorMessage

type AutomationDefinitionVersionNotFoundException

type AutomationDefinitionVersionNotFoundException struct {
	Message *string
}

An Automation document with the specified name and version could not be found.

func (*AutomationDefinitionVersionNotFoundException) Error

func (*AutomationDefinitionVersionNotFoundException) ErrorCode

func (*AutomationDefinitionVersionNotFoundException) ErrorFault

func (*AutomationDefinitionVersionNotFoundException) ErrorMessage

type AutomationExecution

type AutomationExecution struct {

	// The execution ID.
	AutomationExecutionId *string

	// The execution status of the Automation.
	AutomationExecutionStatus AutomationExecutionStatus

	// The action of the step that is currently running.
	CurrentAction *string

	// The name of the step that is currently running.
	CurrentStepName *string

	// The name of the Automation document used during the execution.
	DocumentName *string

	// The version of the document to use during execution.
	DocumentVersion *string

	// The Amazon Resource Name (ARN) of the user who ran the automation.
	ExecutedBy *string

	// The time the execution finished.
	ExecutionEndTime *time.Time

	// The time the execution started.
	ExecutionStartTime *time.Time

	// A message describing why an execution has failed, if the status is set to
	// Failed.
	FailureMessage *string

	// The MaxConcurrency value specified by the user when the execution started.
	MaxConcurrency *string

	// The MaxErrors value specified by the user when the execution started.
	MaxErrors *string

	// The automation execution mode.
	Mode ExecutionMode

	// The list of execution outputs as defined in the automation document.
	Outputs map[string][]*string

	// The key-value map of execution parameters, which were supplied when calling
	// StartAutomationExecution.
	Parameters map[string][]*string

	// The AutomationExecutionId of the parent automation.
	ParentAutomationExecutionId *string

	// An aggregate of step execution statuses displayed in the AWS Console for a
	// multi-Region and multi-account Automation execution.
	ProgressCounters *ProgressCounters

	// A list of resolved targets in the rate control execution.
	ResolvedTargets *ResolvedTargets

	// 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 run in
	// order.
	StepExecutions []*StepExecution

	// A boolean value that indicates if the response contains the full list of the
	// Automation step executions. If true, use the DescribeAutomationStepExecutions
	// API action to get the full list of step executions.
	StepExecutionsTruncated *bool

	// The target of the execution.
	Target *string

	// The combination of AWS Regions and/or AWS accounts where you want to run the
	// Automation.
	TargetLocations []*TargetLocation

	// The specified key-value mapping of document parameters to target resources.
	TargetMaps []map[string][]*string

	// The parameter name.
	TargetParameterName *string

	// The specified targets.
	Targets []*Target
}

Detailed information about the current state of an individual Automation execution.

type AutomationExecutionFilter

type AutomationExecutionFilter struct {

	// One or more keys to limit the results. Valid filter keys include the following:
	// DocumentNamePrefix, ExecutionStatus, ExecutionId, ParentExecutionId,
	// CurrentAction, StartTimeBefore, StartTimeAfter.
	//
	// This member is required.
	Key AutomationExecutionFilterKey

	// The values used to limit the execution information associated with the filter's
	// key.
	//
	// This member is required.
	Values []*string
}

A filter used to match specific automation executions. This is used to limit the scope of Automation execution information returned.

type AutomationExecutionFilterKey

type AutomationExecutionFilterKey string
const (
	AutomationExecutionFilterKeyDocument_name_prefix AutomationExecutionFilterKey = "DocumentNamePrefix"
	AutomationExecutionFilterKeyExecution_status     AutomationExecutionFilterKey = "ExecutionStatus"
	AutomationExecutionFilterKeyExecution_id         AutomationExecutionFilterKey = "ExecutionId"
	AutomationExecutionFilterKeyParent_execution_id  AutomationExecutionFilterKey = "ParentExecutionId"
	AutomationExecutionFilterKeyCurrent_action       AutomationExecutionFilterKey = "CurrentAction"
	AutomationExecutionFilterKeyStart_time_before    AutomationExecutionFilterKey = "StartTimeBefore"
	AutomationExecutionFilterKeyStart_time_after     AutomationExecutionFilterKey = "StartTimeAfter"
	AutomationExecutionFilterKeyAutomation_type      AutomationExecutionFilterKey = "AutomationType"
	AutomationExecutionFilterKeyTag_key              AutomationExecutionFilterKey = "TagKey"
)

Enum values for AutomationExecutionFilterKey

type AutomationExecutionLimitExceededException

type AutomationExecutionLimitExceededException struct {
	Message *string
}

The number of simultaneously running Automation executions exceeded the allowable limit.

func (*AutomationExecutionLimitExceededException) Error

func (*AutomationExecutionLimitExceededException) ErrorCode

func (*AutomationExecutionLimitExceededException) ErrorFault

func (*AutomationExecutionLimitExceededException) ErrorMessage

type AutomationExecutionMetadata

type AutomationExecutionMetadata struct {

	// The execution ID.
	AutomationExecutionId *string

	// The status of the execution.
	AutomationExecutionStatus AutomationExecutionStatus

	// Use this filter with DescribeAutomationExecutions. Specify either Local or
	// CrossAccount. CrossAccount is an Automation that runs in multiple AWS Regions
	// and accounts. For more information, see Running Automation workflows in multiple
	// AWS Regions and accounts
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-automation-multiple-accounts-and-regions.html)
	// in the AWS Systems Manager User Guide.
	AutomationType AutomationType

	// The action of the step that is currently running.
	CurrentAction *string

	// The name of the step that is currently running.
	CurrentStepName *string

	// The name of the Automation document used during execution.
	DocumentName *string

	// The document version used during the execution.
	DocumentVersion *string

	// The IAM role ARN of the user who ran the Automation.
	ExecutedBy *string

	// The time the execution finished. This is not populated if the execution is still
	// in progress.
	ExecutionEndTime *time.Time

	// The time the execution started.
	ExecutionStartTime *time.Time

	// The list of execution outputs as defined in the Automation document.
	FailureMessage *string

	// An S3 bucket where execution information is stored.
	LogFile *string

	// The MaxConcurrency value specified by the user when starting the Automation.
	MaxConcurrency *string

	// The MaxErrors value specified by the user when starting the Automation.
	MaxErrors *string

	// The Automation execution mode.
	Mode ExecutionMode

	// The list of execution outputs as defined in the Automation document.
	Outputs map[string][]*string

	// The ExecutionId of the parent Automation.
	ParentAutomationExecutionId *string

	// A list of targets that resolved during the execution.
	ResolvedTargets *ResolvedTargets

	// The list of execution outputs as defined in the Automation document.
	Target *string

	// The specified key-value mapping of document parameters to target resources.
	TargetMaps []map[string][]*string

	// The list of execution outputs as defined in the Automation document.
	TargetParameterName *string

	// The targets defined by the user when starting the Automation.
	Targets []*Target
}

Details about a specific Automation execution.

type AutomationExecutionNotFoundException

type AutomationExecutionNotFoundException struct {
	Message *string
}

There is no automation execution information for the requested automation execution ID.

func (*AutomationExecutionNotFoundException) Error

func (*AutomationExecutionNotFoundException) ErrorCode

func (*AutomationExecutionNotFoundException) ErrorFault

func (*AutomationExecutionNotFoundException) ErrorMessage

func (e *AutomationExecutionNotFoundException) ErrorMessage() string

type AutomationExecutionStatus

type AutomationExecutionStatus string
const (
	AutomationExecutionStatusPending    AutomationExecutionStatus = "Pending"
	AutomationExecutionStatusInprogress AutomationExecutionStatus = "InProgress"
	AutomationExecutionStatusWaiting    AutomationExecutionStatus = "Waiting"
	AutomationExecutionStatusSuccess    AutomationExecutionStatus = "Success"
	AutomationExecutionStatusTimedout   AutomationExecutionStatus = "TimedOut"
	AutomationExecutionStatusCancelling AutomationExecutionStatus = "Cancelling"
	AutomationExecutionStatusCancelled  AutomationExecutionStatus = "Cancelled"
	AutomationExecutionStatusFailed     AutomationExecutionStatus = "Failed"
)

Enum values for AutomationExecutionStatus

type AutomationStepNotFoundException

type AutomationStepNotFoundException struct {
	Message *string
}

The specified step name and execution ID don't exist. Verify the information and try again.

func (*AutomationStepNotFoundException) Error

func (*AutomationStepNotFoundException) ErrorCode

func (e *AutomationStepNotFoundException) ErrorCode() string

func (*AutomationStepNotFoundException) ErrorFault

func (*AutomationStepNotFoundException) ErrorMessage

func (e *AutomationStepNotFoundException) ErrorMessage() string

type AutomationType

type AutomationType string
const (
	AutomationTypeCrossaccount AutomationType = "CrossAccount"
	AutomationTypeLocal        AutomationType = "Local"
)

Enum values for AutomationType

type CalendarState

type CalendarState string
const (
	CalendarStateOpen   CalendarState = "OPEN"
	CalendarStateClosed CalendarState = "CLOSED"
)

Enum values for CalendarState

type CloudWatchOutputConfig

type CloudWatchOutputConfig struct {

	// The name of the CloudWatch log group where you want to send command output. If
	// you don't specify a group name, Systems Manager automatically creates a log
	// group for you. The log group uses the following naming format:
	// aws/ssm/SystemsManagerDocumentName.
	CloudWatchLogGroupName *string

	// Enables Systems Manager to send command output to CloudWatch Logs.
	CloudWatchOutputEnabled *bool
}

Configuration options for sending command output to CloudWatch Logs.

type Command

type Command struct {

	// CloudWatch Logs information where you want Systems Manager to send the command
	// output.
	CloudWatchOutputConfig *CloudWatchOutputConfig

	// A unique identifier for this command.
	CommandId *string

	// User-specified information about the command, such as a brief description of
	// what the command should do.
	Comment *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 *int32

	// The number of targets for which the status is Delivery Timed Out.
	DeliveryTimedOutCount *int32

	// The name of the document requested for execution.
	DocumentName *string

	// The SSM document version.
	DocumentVersion *string

	// The number of targets for which the status is Failed or Execution Timed Out.
	ErrorCount *int32

	// If this time is reached and the command has not already started running, it will
	// not run. Calculated based on the ExpiresAfter user input provided as part of the
	// SendCommand API.
	ExpiresAfter *time.Time

	// The instance IDs against which this command was requested.
	InstanceIds []*string

	// The maximum number of instances that are allowed to run 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 Running commands using Systems Manager Run Command
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/run-command.html)
	// in the AWS Systems Manager User Guide.
	MaxConcurrency *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 0. For more information
	// about how to use MaxErrors, see Running commands using Systems Manager Run
	// Command
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/run-command.html)
	// in the AWS Systems Manager User Guide.
	MaxErrors *string

	// Configurations for sending notifications about command status changes.
	NotificationConfig *NotificationConfig

	// The S3 bucket where the responses to the command executions should be stored.
	// This was requested when issuing the command.
	OutputS3BucketName *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

	// (Deprecated) You can no longer specify this parameter. The system ignores it.
	// Instead, Systems Manager automatically determines the Region of the S3 bucket.
	OutputS3Region *string

	// The parameter values to be inserted in the document when running the command.
	Parameters map[string][]*string

	// The date and time the command was requested.
	RequestedDateTime *time.Time

	// The IAM service role that Run Command uses to act on your behalf when sending
	// notifications about command status changes.
	ServiceRole *string

	// The status of the command.
	Status 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 Understanding command
	// statuses
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html)
	// in the AWS Systems Manager User Guide. 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
	// ran 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 running it on any instance. This is a terminal state.
	StatusDetails *string

	// The number of targets for the command.
	TargetCount *int32

	// 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

	// The TimeoutSeconds value specified for a command.
	TimeoutSeconds *int32
}

Describes a command request.

type CommandFilter

type CommandFilter struct {

	// The name of the filter.
	//
	// This member is required.
	Key CommandFilterKey

	// The filter value. Valid values for each filter key are as follows:
	//
	//     *
	// InvokedAfter: Specify a timestamp to limit your results. For example, specify
	// 2018-07-07T00:00:00Z to see a list of command executions occurring July 7, 2018,
	// and later.
	//
	//     * InvokedBefore: Specify a timestamp to limit your results. For
	// example, specify 2018-07-07T00:00:00Z to see a list of command executions from
	// before July 7, 2018.
	//
	//     * Status: Specify a valid command status to see a list
	// of all command executions with that status. Status values you can specify
	// include:
	//
	//         * Pending
	//
	//         * InProgress
	//
	//         * Success
	//
	//         *
	// Cancelled
	//
	//         * Failed
	//
	//         * TimedOut
	//
	//         * Cancelling
	//
	//     *
	// DocumentName: Specify name of the SSM document for which you want to see command
	// execution results. For example, specify AWS-RunPatchBaseline to see command
	// executions that used this SSM document to perform security patching operations
	// on instances.
	//
	//     * ExecutionStage: Specify one of the following values:
	//
	//
	// * Executing: Returns a list of command executions that are currently still
	// running.
	//
	//         * Complete: Returns a list of command executions that have
	// already completed.
	//
	// This member is required.
	Value *string
}

Describes a command filter. An instance ID can't be specified when a command status is Pending because the command hasn't run on the instance yet.

type CommandFilterKey

type CommandFilterKey string
const (
	CommandFilterKeyInvoked_after   CommandFilterKey = "InvokedAfter"
	CommandFilterKeyInvoked_before  CommandFilterKey = "InvokedBefore"
	CommandFilterKeyStatus          CommandFilterKey = "Status"
	CommandFilterKeyExecution_stage CommandFilterKey = "ExecutionStage"
	CommandFilterKeyDocument_name   CommandFilterKey = "DocumentName"
)

Enum values for CommandFilterKey

type CommandInvocation

type CommandInvocation struct {

	// CloudWatch Logs information where you want Systems Manager to send the command
	// output.
	CloudWatchOutputConfig *CloudWatchOutputConfig

	// The command against which this invocation was requested.
	CommandId *string

	CommandPlugins []*CommandPlugin

	// User-specified information about the command, such as a brief description of
	// what the command should do.
	Comment *string

	// The document name that was requested for execution.
	DocumentName *string

	// The SSM document version.
	DocumentVersion *string

	// The instance ID in which this invocation was requested.
	InstanceId *string

	// The name of the invocation target. For EC2 instances this is the value for the
	// aws:Name tag. For on-premises instances, this is the name of the instance.
	InstanceName *string

	// Configurations for sending notifications about command status changes on a per
	// instance basis.
	NotificationConfig *NotificationConfig

	// The time and date the request was sent to this instance.
	RequestedDateTime *time.Time

	// 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

	// The URL to the plugin's StdErr file in Amazon S3, if the 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 S3 bucket was defined
	// for the command.
	StandardErrorUrl *string

	// The URL to the plugin's StdOut file in Amazon S3, if the 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 S3 bucket was defined
	// for the command.
	StandardOutputUrl *string

	// Whether or not the invocation succeeded, failed, or is pending.
	Status 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 Understanding command statuses
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html)
	// in the AWS Systems Manager User Guide. 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 command's 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 command's 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

	// Gets the trace output sent by the agent.
	TraceOutput *string
}

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 runs 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 ran.

type CommandInvocationStatus

type CommandInvocationStatus string
const (
	CommandInvocationStatusPending     CommandInvocationStatus = "Pending"
	CommandInvocationStatusIn_progress CommandInvocationStatus = "InProgress"
	CommandInvocationStatusDelayed     CommandInvocationStatus = "Delayed"
	CommandInvocationStatusSuccess     CommandInvocationStatus = "Success"
	CommandInvocationStatusCancelled   CommandInvocationStatus = "Cancelled"
	CommandInvocationStatusTimed_out   CommandInvocationStatus = "TimedOut"
	CommandInvocationStatusFailed      CommandInvocationStatus = "Failed"
	CommandInvocationStatusCancelling  CommandInvocationStatus = "Cancelling"
)

Enum values for CommandInvocationStatus

type CommandPlugin

type CommandPlugin struct {

	// 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

	// Output of the plugin execution.
	Output *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 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

	// 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 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

	// (Deprecated) You can no longer specify this parameter. The system ignores it.
	// Instead, Systems Manager automatically determines the S3 bucket region.
	OutputS3Region *string

	// A numeric response code generated after running the plugin.
	ResponseCode *int32

	// The time the plugin stopped running. Could stop prematurely if, for example, a
	// cancel command was sent.
	ResponseFinishDateTime *time.Time

	// The time the plugin started running.
	ResponseStartDateTime *time.Time

	// 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

	// The URL for the complete text written by the plugin to stdout in Amazon S3. If
	// the S3 bucket for the command was not specified, then this string is empty.
	StandardOutputUrl *string

	// The status of this plugin. You can run a document with multiple plugins.
	Status 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 Understanding command
	// statuses
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html)
	// in the AWS Systems Manager User Guide. 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 command's 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 command's 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
}

Describes plugin details.

type CommandPluginStatus

type CommandPluginStatus string
const (
	CommandPluginStatusPending     CommandPluginStatus = "Pending"
	CommandPluginStatusIn_progress CommandPluginStatus = "InProgress"
	CommandPluginStatusSuccess     CommandPluginStatus = "Success"
	CommandPluginStatusTimed_out   CommandPluginStatus = "TimedOut"
	CommandPluginStatusCancelled   CommandPluginStatus = "Cancelled"
	CommandPluginStatusFailed      CommandPluginStatus = "Failed"
)

Enum values for CommandPluginStatus

type CommandStatus

type CommandStatus string
const (
	CommandStatusPending     CommandStatus = "Pending"
	CommandStatusIn_progress CommandStatus = "InProgress"
	CommandStatusSuccess     CommandStatus = "Success"
	CommandStatusCancelled   CommandStatus = "Cancelled"
	CommandStatusFailed      CommandStatus = "Failed"
	CommandStatusTimed_out   CommandStatus = "TimedOut"
	CommandStatusCancelling  CommandStatus = "Cancelling"
)

Enum values for CommandStatus

type ComplianceExecutionSummary

type ComplianceExecutionSummary struct {

	// The time the execution ran as a datetime object that is saved in the following
	// format: yyyy-MM-dd'T'HH:mm:ss'Z'.
	//
	// This member is required.
	ExecutionTime *time.Time

	// An ID created by the system when PutComplianceItems was called. For example,
	// CommandID is a valid execution ID. You can use this ID in subsequent calls.
	ExecutionId *string

	// The type of execution. For example, Command is a valid execution type.
	ExecutionType *string
}

A summary of the call execution that includes an execution ID, the type of execution (for example, Command), and the date/time of the execution using a datetime object that is saved in the following format: yyyy-MM-dd'T'HH:mm:ss'Z'.

type ComplianceItem

type ComplianceItem struct {

	// The compliance type. For example, Association (for a State Manager association),
	// Patch, or Custom:string are all valid compliance types.
	ComplianceType *string

	// A "Key": "Value" tag combination for the compliance item.
	Details map[string]*string

	// A summary for the compliance item. The summary includes an execution ID, the
	// execution type (for example, command), and the execution time.
	ExecutionSummary *ComplianceExecutionSummary

	// An ID for the compliance item. For example, if the compliance item is a Windows
	// patch, the ID could be the number of the KB article; for example: KB4010320.
	Id *string

	// An ID for the resource. For a managed instance, this is the instance ID.
	ResourceId *string

	// The type of resource. ManagedInstance is currently the only supported resource
	// type.
	ResourceType *string

	// The severity of the compliance status. Severity can be one of the following:
	// Critical, High, Medium, Low, Informational, Unspecified.
	Severity ComplianceSeverity

	// The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.
	Status ComplianceStatus

	// A title for the compliance item. For example, if the compliance item is a
	// Windows patch, the title could be the title of the KB article for the patch; for
	// example: Security Update for Active Directory Federation Services.
	Title *string
}

Information about the compliance as defined by the resource type. For example, for a patch resource type, Items includes information about the PatchSeverity, Classification, and so on.

type ComplianceItemEntry

type ComplianceItemEntry struct {

	// The severity of the compliance status. Severity can be one of the following:
	// Critical, High, Medium, Low, Informational, Unspecified.
	//
	// This member is required.
	Severity ComplianceSeverity

	// The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.
	//
	// This member is required.
	Status ComplianceStatus

	// A "Key": "Value" tag combination for the compliance item.
	Details map[string]*string

	// The compliance item ID. For example, if the compliance item is a Windows patch,
	// the ID could be the number of the KB article.
	Id *string

	// The title of the compliance item. For example, if the compliance item is a
	// Windows patch, the title could be the title of the KB article for the patch; for
	// example: Security Update for Active Directory Federation Services.
	Title *string
}

Information about a compliance item.

type ComplianceQueryOperatorType

type ComplianceQueryOperatorType string
const (
	ComplianceQueryOperatorTypeEqual       ComplianceQueryOperatorType = "EQUAL"
	ComplianceQueryOperatorTypeNotequal    ComplianceQueryOperatorType = "NOT_EQUAL"
	ComplianceQueryOperatorTypeBeginwith   ComplianceQueryOperatorType = "BEGIN_WITH"
	ComplianceQueryOperatorTypeLessthan    ComplianceQueryOperatorType = "LESS_THAN"
	ComplianceQueryOperatorTypeGreaterthan ComplianceQueryOperatorType = "GREATER_THAN"
)

Enum values for ComplianceQueryOperatorType

type ComplianceSeverity

type ComplianceSeverity string
const (
	ComplianceSeverityCritical      ComplianceSeverity = "CRITICAL"
	ComplianceSeverityHigh          ComplianceSeverity = "HIGH"
	ComplianceSeverityMedium        ComplianceSeverity = "MEDIUM"
	ComplianceSeverityLow           ComplianceSeverity = "LOW"
	ComplianceSeverityInformational ComplianceSeverity = "INFORMATIONAL"
	ComplianceSeverityUnspecified   ComplianceSeverity = "UNSPECIFIED"
)

Enum values for ComplianceSeverity

type ComplianceStatus

type ComplianceStatus string
const (
	ComplianceStatusCompliant    ComplianceStatus = "COMPLIANT"
	ComplianceStatusNoncompliant ComplianceStatus = "NON_COMPLIANT"
)

Enum values for ComplianceStatus

type ComplianceStringFilter

type ComplianceStringFilter struct {

	// The name of the filter.
	Key *string

	// The type of comparison that should be performed for the value: Equal, NotEqual,
	// BeginWith, LessThan, or GreaterThan.
	Type ComplianceQueryOperatorType

	// The value for which to search.
	Values []*string
}

One or more filters. Use a filter to return a more specific list of results.

type ComplianceSummaryItem

type ComplianceSummaryItem struct {

	// The type of compliance item. For example, the compliance type can be
	// Association, Patch, or Custom:string.
	ComplianceType *string

	// A list of COMPLIANT items for the specified compliance type.
	CompliantSummary *CompliantSummary

	// A list of NON_COMPLIANT items for the specified compliance type.
	NonCompliantSummary *NonCompliantSummary
}

A summary of compliance information by compliance type.

type ComplianceTypeCountLimitExceededException

type ComplianceTypeCountLimitExceededException struct {
	Message *string
}

You specified too many custom compliance types. You can specify a maximum of 10 different types.

func (*ComplianceTypeCountLimitExceededException) Error

func (*ComplianceTypeCountLimitExceededException) ErrorCode

func (*ComplianceTypeCountLimitExceededException) ErrorFault

func (*ComplianceTypeCountLimitExceededException) ErrorMessage

type ComplianceUploadType

type ComplianceUploadType string
const (
	ComplianceUploadTypeComplete ComplianceUploadType = "COMPLETE"
	ComplianceUploadTypePartial  ComplianceUploadType = "PARTIAL"
)

Enum values for ComplianceUploadType

type CompliantSummary

type CompliantSummary struct {

	// The total number of resources that are compliant.
	CompliantCount *int32

	// A summary of the compliance severity by compliance type.
	SeveritySummary *SeveritySummary
}

A summary of resources that are compliant. The summary is organized according to the resource count for each compliance type.

type ConnectionStatus

type ConnectionStatus string
const (
	ConnectionStatusConnected     ConnectionStatus = "Connected"
	ConnectionStatusNot_connected ConnectionStatus = "NotConnected"
)

Enum values for ConnectionStatus

type CreateAssociationBatchRequestEntry

type CreateAssociationBatchRequestEntry struct {

	// The name of the SSM document that contains the configuration information for the
	// instance. You can specify Command or Automation documents. You can specify
	// AWS-predefined documents, documents you created, or a document that is shared
	// with you from another account. For SSM documents that are shared with you from
	// other AWS accounts, you must specify the complete SSM document ARN, in the
	// following format: arn:aws:ssm:region:account-id:document/document-name  For
	// example: arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document For
	// AWS-predefined documents and SSM documents you created in your account, you only
	// need to specify the document name. For example, AWS-ApplyPatchBaseline or
	// My-Document.
	//
	// This member is required.
	Name *string

	// By default, when you create a new associations, the system runs it immediately
	// after it is created and then according to the schedule you specified. Specify
	// this option if you don't want an association to run immediately after you create
	// it.
	ApplyOnlyAtCronInterval *bool

	// Specify a descriptive name for the association.
	AssociationName *string

	// Specify the target for the association. This target is required for associations
	// that use an Automation document and target resources by using rate controls.
	AutomationTargetParameterName *string

	// The severity level to assign to the association.
	ComplianceSeverity AssociationComplianceSeverity

	// The document version.
	DocumentVersion *string

	// The ID of the instance.
	InstanceId *string

	// The maximum number of targets allowed to run the association at the same time.
	// You can specify a number, for example 10, or a percentage of the target set, for
	// example 10%. The default value is 100%, which means all targets run the
	// association at the same time. If a new instance starts and attempts to run an
	// association while Systems Manager is running MaxConcurrency associations, the
	// association is allowed to run. During the next association interval, the new
	// instance will process its association within the limit specified for
	// MaxConcurrency.
	MaxConcurrency *string

	// The number of errors that are allowed before the system stops sending requests
	// to run the association on additional targets. You can specify either an absolute
	// number of errors, for example 10, or a percentage of the target set, for example
	// 10%. If you specify 3, for example, the system stops sending requests when the
	// fourth error is received. If you specify 0, then the system stops sending
	// requests after the first error is returned. If you run an association on 50
	// instances and set MaxError to 10%, then the system stops sending the request
	// when the sixth error is received. Executions that are already running an
	// association when MaxErrors is reached are allowed to complete, but some of these
	// executions may fail as well. If you need to ensure that there won't be more than
	// max-errors failed executions, set MaxConcurrency to 1 so that executions proceed
	// one at a time.
	MaxErrors *string

	// An S3 bucket where you want to store the results of this request.
	OutputLocation *InstanceAssociationOutputLocation

	// A description of the parameters for a document.
	Parameters map[string][]*string

	// A cron expression that specifies a schedule when the association runs.
	ScheduleExpression *string

	// The mode for generating association compliance. You can specify AUTO or MANUAL.
	// In AUTO mode, the system uses the status of the association execution to
	// determine the compliance status. If the association execution runs successfully,
	// then the association is COMPLIANT. If the association execution doesn't run
	// successfully, the association is NON-COMPLIANT. In MANUAL mode, you must specify
	// the AssociationId as a parameter for the PutComplianceItems API action. In this
	// case, compliance data is not managed by State Manager. It is managed by your
	// direct call to the PutComplianceItems API action. By default, all associations
	// use AUTO mode.
	SyncCompliance AssociationSyncCompliance

	// The instances targeted by the request.
	Targets []*Target
}

Describes the association of a Systems Manager SSM document and an instance.

type CustomSchemaCountLimitExceededException

type CustomSchemaCountLimitExceededException struct {
	Message *string
}

You have exceeded the limit for custom schemas. Delete one or more custom schemas and try again.

func (*CustomSchemaCountLimitExceededException) Error

func (*CustomSchemaCountLimitExceededException) ErrorCode

func (*CustomSchemaCountLimitExceededException) ErrorFault

func (*CustomSchemaCountLimitExceededException) ErrorMessage

type DescribeActivationsFilter

type DescribeActivationsFilter struct {

	// The name of the filter.
	FilterKey DescribeActivationsFilterKeys

	// The filter values.
	FilterValues []*string
}

Filter for the DescribeActivation API.

type DescribeActivationsFilterKeys

type DescribeActivationsFilterKeys string
const (
	DescribeActivationsFilterKeysActivation_ids        DescribeActivationsFilterKeys = "ActivationIds"
	DescribeActivationsFilterKeysDefault_instance_name DescribeActivationsFilterKeys = "DefaultInstanceName"
	DescribeActivationsFilterKeysIam_role              DescribeActivationsFilterKeys = "IamRole"
)

Enum values for DescribeActivationsFilterKeys

type DocumentAlreadyExists

type DocumentAlreadyExists struct {
	Message *string
}

The specified document already exists.

func (*DocumentAlreadyExists) Error

func (e *DocumentAlreadyExists) Error() string

func (*DocumentAlreadyExists) ErrorCode

func (e *DocumentAlreadyExists) ErrorCode() string

func (*DocumentAlreadyExists) ErrorFault

func (e *DocumentAlreadyExists) ErrorFault() smithy.ErrorFault

func (*DocumentAlreadyExists) ErrorMessage

func (e *DocumentAlreadyExists) ErrorMessage() string

type DocumentDefaultVersionDescription

type DocumentDefaultVersionDescription struct {

	// The default version of the document.
	DefaultVersion *string

	// The default version of the artifact associated with the document.
	DefaultVersionName *string

	// The name of the document.
	Name *string
}

A default version of a document.

type DocumentDescription

type DocumentDescription struct {

	// Details about the document attachments, including names, locations, sizes, and
	// so on.
	AttachmentsInformation []*AttachmentInformation

	// The date when the document was created.
	CreatedDate *time.Time

	// The default version.
	DefaultVersion *string

	// A description of the document.
	Description *string

	// The document format, either JSON or YAML.
	DocumentFormat DocumentFormat

	// The type of document.
	DocumentType DocumentType

	// The document version.
	DocumentVersion *string

	// The Sha256 or Sha1 hash created by the system when the document was created.
	// Sha1 hashes have been deprecated.
	Hash *string

	// The hash type of the document. Valid values include Sha256 or Sha1. Sha1 hashes
	// have been deprecated.
	HashType DocumentHashType

	// The latest version of the document.
	LatestVersion *string

	// The name of the Systems Manager document.
	Name *string

	// The AWS user account that created the document.
	Owner *string

	// A description of the parameters for a document.
	Parameters []*DocumentParameter

	// The list of OS platforms compatible with this Systems Manager document.
	PlatformTypes []PlatformType

	// A list of SSM documents required by a document. For example, an
	// ApplicationConfiguration document requires an ApplicationConfigurationSchema
	// document.
	Requires []*DocumentRequires

	// The schema version.
	SchemaVersion *string

	// The SHA1 hash of the document, which you can use for verification.
	Sha1 *string

	// The status of the Systems Manager document.
	Status DocumentStatus

	// A message returned by AWS Systems Manager that explains the Status value. For
	// example, a Failed status might be explained by the StatusInformation message,
	// "The specified S3 bucket does not exist. Verify that the URL of the S3 bucket is
	// correct."
	StatusInformation *string

	// The tags, or metadata, that have been applied to the document.
	Tags []*Tag

	// The target type which defines the kinds of resources the document can run on.
	// For example, /AWS::EC2::Instance. For a list of valid resource types, see AWS
	// resource and property types reference
	// (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html)
	// in the AWS CloudFormation User Guide.
	TargetType *string

	// The version of the artifact associated with the document.
	VersionName *string
}

Describes a Systems Manager document.

type DocumentFilter

type DocumentFilter struct {

	// The name of the filter.
	//
	// This member is required.
	Key DocumentFilterKey

	// The value of the filter.
	//
	// This member is required.
	Value *string
}

This data type is deprecated. Instead, use DocumentKeyValuesFilter.

type DocumentFilterKey

type DocumentFilterKey string
const (
	DocumentFilterKeyName          DocumentFilterKey = "Name"
	DocumentFilterKeyOwner         DocumentFilterKey = "Owner"
	DocumentFilterKeyPlatformtypes DocumentFilterKey = "PlatformTypes"
	DocumentFilterKeyDocumenttype  DocumentFilterKey = "DocumentType"
)

Enum values for DocumentFilterKey

type DocumentFormat

type DocumentFormat string
const (
	DocumentFormatYaml DocumentFormat = "YAML"
	DocumentFormatJson DocumentFormat = "JSON"
	DocumentFormatText DocumentFormat = "TEXT"
)

Enum values for DocumentFormat

type DocumentHashType

type DocumentHashType string
const (
	DocumentHashTypeSha256 DocumentHashType = "Sha256"
	DocumentHashTypeSha1   DocumentHashType = "Sha1"
)

Enum values for DocumentHashType

type DocumentIdentifier

type DocumentIdentifier struct {

	// The document format, either JSON or YAML.
	DocumentFormat DocumentFormat

	// The document type.
	DocumentType DocumentType

	// The document version.
	DocumentVersion *string

	// The name of the Systems Manager document.
	Name *string

	// The AWS user account that created the document.
	Owner *string

	// The operating system platform.
	PlatformTypes []PlatformType

	// A list of SSM documents required by a document. For example, an
	// ApplicationConfiguration document requires an ApplicationConfigurationSchema
	// document.
	Requires []*DocumentRequires

	// The schema version.
	SchemaVersion *string

	// The tags, or metadata, that have been applied to the document.
	Tags []*Tag

	// The target type which defines the kinds of resources the document can run on.
	// For example, /AWS::EC2::Instance. For a list of valid resource types, see AWS
	// resource and property types reference
	// (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html)
	// in the AWS CloudFormation User Guide.
	TargetType *string

	// An optional field specifying the version of the artifact associated with the
	// document. For example, "Release 12, Update 6". This value is unique across all
	// versions of a document, and cannot be changed.
	VersionName *string
}

Describes the name of a Systems Manager document.

type DocumentKeyValuesFilter

type DocumentKeyValuesFilter struct {

	// The name of the filter key.
	Key *string

	// The value for the filter key.
	Values []*string
}

One or more filters. Use a filter to return a more specific list of documents. For keys, you can specify one or more tags that have been applied to a document. Other valid values include Owner, Name, PlatformTypes, DocumentType, and TargetType. Note that only one Owner can be specified in a request. For example: Key=Owner,Values=Self. If you use Name as a key, you can use a name prefix to return a list of documents. For example, in the AWS CLI, to return a list of all documents that begin with Te, run the following command: aws ssm list-documents --filters Key=Name,Values=Te If you specify more than two keys, only documents that are identified by all the tags are returned in the results. If you specify more than two values for a key, documents that are identified by any of the values are returned in the results. To specify a custom key and value pair, use the format Key=tag:tagName,Values=valueName. For example, if you created a Key called region and are using the AWS CLI to call the list-documents command: aws ssm list-documents --filters Key=tag:region,Values=east,west Key=Owner,Values=Self

type DocumentLimitExceeded

type DocumentLimitExceeded struct {
	Message *string
}

You can have at most 500 active Systems Manager documents.

func (*DocumentLimitExceeded) Error

func (e *DocumentLimitExceeded) Error() string

func (*DocumentLimitExceeded) ErrorCode

func (e *DocumentLimitExceeded) ErrorCode() string

func (*DocumentLimitExceeded) ErrorFault

func (e *DocumentLimitExceeded) ErrorFault() smithy.ErrorFault

func (*DocumentLimitExceeded) ErrorMessage

func (e *DocumentLimitExceeded) ErrorMessage() string

type DocumentParameter

type DocumentParameter struct {

	// If specified, the default values for the parameters. Parameters without a
	// default value are required. Parameters with a default value are optional.
	DefaultValue *string

	// A description of what the parameter does, how to use it, the default value, and
	// whether or not the parameter is optional.
	Description *string

	// The name of the parameter.
	Name *string

	// The type of parameter. The type can be either String or StringList.
	Type DocumentParameterType
}

Parameters specified in a System Manager document that run on the server when the command is run.

type DocumentParameterType

type DocumentParameterType string
const (
	DocumentParameterTypeString     DocumentParameterType = "String"
	DocumentParameterTypeStringlist DocumentParameterType = "StringList"
)

Enum values for DocumentParameterType

type DocumentPermissionLimit

type DocumentPermissionLimit struct {
	Message *string
}

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.

func (*DocumentPermissionLimit) Error

func (e *DocumentPermissionLimit) Error() string

func (*DocumentPermissionLimit) ErrorCode

func (e *DocumentPermissionLimit) ErrorCode() string

func (*DocumentPermissionLimit) ErrorFault

func (e *DocumentPermissionLimit) ErrorFault() smithy.ErrorFault

func (*DocumentPermissionLimit) ErrorMessage

func (e *DocumentPermissionLimit) ErrorMessage() string

type DocumentPermissionType

type DocumentPermissionType string
const (
	DocumentPermissionTypeShare DocumentPermissionType = "Share"
)

Enum values for DocumentPermissionType

type DocumentRequires

type DocumentRequires struct {

	// The name of the required SSM document. The name can be an Amazon Resource Name
	// (ARN).
	//
	// This member is required.
	Name *string

	// The document version required by the current document.
	Version *string
}

An SSM document required by the current document.

type DocumentStatus

type DocumentStatus string
const (
	DocumentStatusCreating DocumentStatus = "Creating"
	DocumentStatusActive   DocumentStatus = "Active"
	DocumentStatusUpdating DocumentStatus = "Updating"
	DocumentStatusDeleting DocumentStatus = "Deleting"
	DocumentStatusFailed   DocumentStatus = "Failed"
)

Enum values for DocumentStatus

type DocumentType

type DocumentType string
const (
	DocumentTypeCommand                        DocumentType = "Command"
	DocumentTypePolicy                         DocumentType = "Policy"
	DocumentTypeAutomation                     DocumentType = "Automation"
	DocumentTypeSession                        DocumentType = "Session"
	DocumentTypePackage                        DocumentType = "Package"
	DocumentTypeApplicationconfiguration       DocumentType = "ApplicationConfiguration"
	DocumentTypeApplicationconfigurationschema DocumentType = "ApplicationConfigurationSchema"
	DocumentTypeDeploymentstrategy             DocumentType = "DeploymentStrategy"
	DocumentTypeChangecalendar                 DocumentType = "ChangeCalendar"
)

Enum values for DocumentType

type DocumentVersionInfo

type DocumentVersionInfo struct {

	// The date the document was created.
	CreatedDate *time.Time

	// The document format, either JSON or YAML.
	DocumentFormat DocumentFormat

	// The document version.
	DocumentVersion *string

	// An identifier for the default version of the document.
	IsDefaultVersion *bool

	// The document name.
	Name *string

	// The status of the Systems Manager document, such as Creating, Active, Failed,
	// and Deleting.
	Status DocumentStatus

	// A message returned by AWS Systems Manager that explains the Status value. For
	// example, a Failed status might be explained by the StatusInformation message,
	// "The specified S3 bucket does not exist. Verify that the URL of the S3 bucket is
	// correct."
	StatusInformation *string

	// The version of the artifact associated with the document. For example, "Release
	// 12, Update 6". This value is unique across all versions of a document, and
	// cannot be changed.
	VersionName *string
}

Version information about the document.

type DocumentVersionLimitExceeded

type DocumentVersionLimitExceeded struct {
	Message *string
}

The document has too many versions. Delete one or more document versions and try again.

func (*DocumentVersionLimitExceeded) Error

func (*DocumentVersionLimitExceeded) ErrorCode

func (e *DocumentVersionLimitExceeded) ErrorCode() string

func (*DocumentVersionLimitExceeded) ErrorFault

func (*DocumentVersionLimitExceeded) ErrorMessage

func (e *DocumentVersionLimitExceeded) ErrorMessage() string

type DoesNotExistException

type DoesNotExistException struct {
	Message *string
}

Error returned when the ID specified for a resource, such as a maintenance window or Patch baseline, doesn't exist. For information about resource quotas in Systems Manager, see Systems Manager service quotas (http://docs.aws.amazon.com/general/latest/gr/ssm.html#limits_ssm) in the AWS General Reference.

func (*DoesNotExistException) Error

func (e *DoesNotExistException) Error() string

func (*DoesNotExistException) ErrorCode

func (e *DoesNotExistException) ErrorCode() string

func (*DoesNotExistException) ErrorFault

func (e *DoesNotExistException) ErrorFault() smithy.ErrorFault

func (*DoesNotExistException) ErrorMessage

func (e *DoesNotExistException) ErrorMessage() string

type DuplicateDocumentContent

type DuplicateDocumentContent struct {
	Message *string
}

The content of the association document matches another document. Change the content of the document and try again.

func (*DuplicateDocumentContent) Error

func (e *DuplicateDocumentContent) Error() string

func (*DuplicateDocumentContent) ErrorCode

func (e *DuplicateDocumentContent) ErrorCode() string

func (*DuplicateDocumentContent) ErrorFault

func (e *DuplicateDocumentContent) ErrorFault() smithy.ErrorFault

func (*DuplicateDocumentContent) ErrorMessage

func (e *DuplicateDocumentContent) ErrorMessage() string

type DuplicateDocumentVersionName

type DuplicateDocumentVersionName struct {
	Message *string
}

The version name has already been used in this document. Specify a different version name, and then try again.

func (*DuplicateDocumentVersionName) Error

func (*DuplicateDocumentVersionName) ErrorCode

func (e *DuplicateDocumentVersionName) ErrorCode() string

func (*DuplicateDocumentVersionName) ErrorFault

func (*DuplicateDocumentVersionName) ErrorMessage

func (e *DuplicateDocumentVersionName) ErrorMessage() string

type DuplicateInstanceId

type DuplicateInstanceId struct {
	Message *string
}

You cannot specify an instance ID in more than one association.

func (*DuplicateInstanceId) Error

func (e *DuplicateInstanceId) Error() string

func (*DuplicateInstanceId) ErrorCode

func (e *DuplicateInstanceId) ErrorCode() string

func (*DuplicateInstanceId) ErrorFault

func (e *DuplicateInstanceId) ErrorFault() smithy.ErrorFault

func (*DuplicateInstanceId) ErrorMessage

func (e *DuplicateInstanceId) ErrorMessage() string

type EffectivePatch

type EffectivePatch struct {

	// 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

	// 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
}

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.

type ExecutionMode

type ExecutionMode string
const (
	ExecutionModeAuto        ExecutionMode = "Auto"
	ExecutionModeInteractive ExecutionMode = "Interactive"
)

Enum values for ExecutionMode

type FailedCreateAssociation

type FailedCreateAssociation struct {

	// The association.
	Entry *CreateAssociationBatchRequestEntry

	// The source of the failure.
	Fault Fault

	// A description of the failure.
	Message *string
}

Describes a failed association.

type FailureDetails

type FailureDetails struct {

	// Detailed information about the Automation step failure.
	Details map[string][]*string

	// The stage of the Automation execution when the failure occurred. The stages
	// include the following: InputValidation, PreVerification, Invocation,
	// PostVerification.
	FailureStage *string

	// The type of Automation failure. Failure types include the following: Action,
	// Permission, Throttling, Verification, Internal.
	FailureType *string
}

Information about an Automation failure.

type Fault

type Fault string
const (
	FaultClient  Fault = "Client"
	FaultServer  Fault = "Server"
	FaultUnknown Fault = "Unknown"
)

Enum values for Fault

type FeatureNotAvailableException

type FeatureNotAvailableException struct {
	Message *string
}

You attempted to register a LAMBDA or STEP_FUNCTIONS task in a region where the corresponding service is not available.

func (*FeatureNotAvailableException) Error

func (*FeatureNotAvailableException) ErrorCode

func (e *FeatureNotAvailableException) ErrorCode() string

func (*FeatureNotAvailableException) ErrorFault

func (*FeatureNotAvailableException) ErrorMessage

func (e *FeatureNotAvailableException) ErrorMessage() string

type HierarchyLevelLimitExceededException

type HierarchyLevelLimitExceededException struct {
	Message *string
}

A hierarchy can have a maximum of 15 levels. For more information, see Requirements and constraints for parameter names (https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html) in the AWS Systems Manager User Guide.

func (*HierarchyLevelLimitExceededException) Error

func (*HierarchyLevelLimitExceededException) ErrorCode

func (*HierarchyLevelLimitExceededException) ErrorFault

func (*HierarchyLevelLimitExceededException) ErrorMessage

func (e *HierarchyLevelLimitExceededException) ErrorMessage() string

type HierarchyTypeMismatchException

type HierarchyTypeMismatchException struct {
	Message *string
}

Parameter Store does not support changing a parameter type in a hierarchy. For example, you can't change a parameter from a String type to a SecureString type. You must create a new, unique parameter.

func (*HierarchyTypeMismatchException) Error

func (*HierarchyTypeMismatchException) ErrorCode

func (e *HierarchyTypeMismatchException) ErrorCode() string

func (*HierarchyTypeMismatchException) ErrorFault

func (*HierarchyTypeMismatchException) ErrorMessage

func (e *HierarchyTypeMismatchException) ErrorMessage() string

type IdempotentParameterMismatch

type IdempotentParameterMismatch struct {
	Message *string
}

Error returned when an idempotent operation is retried and the parameters don't match the original call to the API with the same idempotency token.

func (*IdempotentParameterMismatch) Error

func (*IdempotentParameterMismatch) ErrorCode

func (e *IdempotentParameterMismatch) ErrorCode() string

func (*IdempotentParameterMismatch) ErrorFault

func (*IdempotentParameterMismatch) ErrorMessage

func (e *IdempotentParameterMismatch) ErrorMessage() string

type IncompatiblePolicyException

type IncompatiblePolicyException struct {
	Message *string
}

There is a conflict in the policies specified for this parameter. You can't, for example, specify two Expiration policies for a parameter. Review your policies, and try again.

func (*IncompatiblePolicyException) Error

func (*IncompatiblePolicyException) ErrorCode

func (e *IncompatiblePolicyException) ErrorCode() string

func (*IncompatiblePolicyException) ErrorFault

func (*IncompatiblePolicyException) ErrorMessage

func (e *IncompatiblePolicyException) ErrorMessage() string

type InstanceAggregatedAssociationOverview

type InstanceAggregatedAssociationOverview struct {

	// Detailed status information about the aggregated associations.
	DetailedStatus *string

	// The number of associations for the instance(s).
	InstanceAssociationStatusAggregatedCount map[string]*int32
}

Status information about the aggregated associations.

type InstanceAssociation

type InstanceAssociation struct {

	// The association ID.
	AssociationId *string

	// Version information for the association on the instance.
	AssociationVersion *string

	// The content of the association document for the instance(s).
	Content *string

	// The instance ID.
	InstanceId *string
}

One or more association documents on the instance.

type InstanceAssociationOutputLocation

type InstanceAssociationOutputLocation struct {

	// An S3 bucket where you want to store the results of this request.
	S3Location *S3OutputLocation
}

An S3 bucket where you want to store the results of this request.

type InstanceAssociationOutputUrl

type InstanceAssociationOutputUrl struct {

	// The URL of S3 bucket where you want to store the results of this request.
	S3OutputUrl *S3OutputUrl
}

The URL of S3 bucket where you want to store the results of this request.

type InstanceAssociationStatusInfo

type InstanceAssociationStatusInfo struct {

	// The association ID.
	AssociationId *string

	// The name of the association applied to the instance.
	AssociationName *string

	// The version of the association applied to the instance.
	AssociationVersion *string

	// Detailed status information about the instance association.
	DetailedStatus *string

	// The association document versions.
	DocumentVersion *string

	// An error code returned by the request to create the association.
	ErrorCode *string

	// The date the instance association ran.
	ExecutionDate *time.Time

	// Summary information about association execution.
	ExecutionSummary *string

	// The instance ID where the association was created.
	InstanceId *string

	// The name of the association.
	Name *string

	// A URL for an S3 bucket where you want to store the results of this request.
	OutputUrl *InstanceAssociationOutputUrl

	// Status information about the instance association.
	Status *string
}

Status information about the instance association.

type InstanceInformation

type InstanceInformation struct {

	// The activation ID created by Systems Manager when the server or VM was
	// registered.
	ActivationId *string

	// The version of SSM Agent running on your Linux instance.
	AgentVersion *string

	// Information about the association.
	AssociationOverview *InstanceAggregatedAssociationOverview

	// The status of the association.
	AssociationStatus *string

	// The fully qualified host name of the managed instance.
	ComputerName *string

	// The IP address of the managed instance.
	IPAddress *string

	// The Amazon Identity and Access Management (IAM) role assigned to the on-premises
	// Systems Manager managed instance. This call does not return the IAM role for EC2
	// instances. To retrieve the IAM role for an EC2 instance, use the Amazon EC2
	// DescribeInstances action. For information, see DescribeInstances
	// (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html)
	// in the Amazon EC2 API Reference or describe-instances
	// (http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-instances.html) in
	// the AWS CLI Command Reference.
	IamRole *string

	// The instance ID.
	InstanceId *string

	// Indicates whether the latest version of SSM Agent is running on your Linux
	// Managed Instance. This field does not indicate whether or not the latest version
	// is installed on Windows managed instances, because some older versions of
	// Windows Server use the EC2Config service to process SSM requests.
	IsLatestVersion *bool

	// The date the association was last run.
	LastAssociationExecutionDate *time.Time

	// The date and time when agent last pinged Systems Manager service.
	LastPingDateTime *time.Time

	// The last date the association was successfully run.
	LastSuccessfulAssociationExecutionDate *time.Time

	// The name assigned to an on-premises server or virtual machine (VM) when it is
	// activated as a Systems Manager managed instance. The name is specified as the
	// DefaultInstanceName property using the CreateActivation command. It is applied
	// to the managed instance by specifying the Activation Code and Activation ID when
	// you install SSM Agent on the instance, as explained in Install SSM Agent for a
	// hybrid environment (Linux)
	// (http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-linux.html)
	// and Install SSM Agent for a hybrid environment (Windows)
	// (http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-win.html).
	// To retrieve the Name tag of an EC2 instance, use the Amazon EC2
	// DescribeInstances action. For information, see DescribeInstances
	// (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html)
	// in the Amazon EC2 API Reference or describe-instances
	// (http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-instances.html) in
	// the AWS CLI Command Reference.
	Name *string

	// Connection status of SSM Agent.
	PingStatus PingStatus

	// The name of the operating system platform running on your instance.
	PlatformName *string

	// The operating system platform type.
	PlatformType PlatformType

	// The version of the OS platform running on your instance.
	PlatformVersion *string

	// The date the server or VM was registered with AWS as a managed instance.
	RegistrationDate *time.Time

	// The type of instance. Instances are either EC2 instances or managed instances.
	ResourceType ResourceType
}

Describes a filter for a specific list of instances.

type InstanceInformationFilter

type InstanceInformationFilter struct {

	// The name of the filter.
	//
	// This member is required.
	Key InstanceInformationFilterKey

	// The filter values.
	//
	// This member is required.
	ValueSet []*string
}

Describes a filter for a specific list of instances. You can filter instances information by using tags. You specify tags by using a key-value mapping. Use this action instead of the DescribeInstanceInformationRequest$InstanceInformationFilterList method. The InstanceInformationFilterList method is a legacy method and does not support tags.

type InstanceInformationFilterKey

type InstanceInformationFilterKey string
const (
	InstanceInformationFilterKeyInstance_ids       InstanceInformationFilterKey = "InstanceIds"
	InstanceInformationFilterKeyAgent_version      InstanceInformationFilterKey = "AgentVersion"
	InstanceInformationFilterKeyPing_status        InstanceInformationFilterKey = "PingStatus"
	InstanceInformationFilterKeyPlatform_types     InstanceInformationFilterKey = "PlatformTypes"
	InstanceInformationFilterKeyActivation_ids     InstanceInformationFilterKey = "ActivationIds"
	InstanceInformationFilterKeyIam_role           InstanceInformationFilterKey = "IamRole"
	InstanceInformationFilterKeyResource_type      InstanceInformationFilterKey = "ResourceType"
	InstanceInformationFilterKeyAssociation_status InstanceInformationFilterKey = "AssociationStatus"
)

Enum values for InstanceInformationFilterKey

type InstanceInformationStringFilter

type InstanceInformationStringFilter struct {

	// The filter key name to describe your instances. For example:
	// "InstanceIds"|"AgentVersion"|"PingStatus"|"PlatformTypes"|"ActivationIds"|"IamRole"|"ResourceType"|"AssociationStatus"|"Tag
	// Key"
	//
	// This member is required.
	Key *string

	// The filter values.
	//
	// This member is required.
	Values []*string
}

The filters to describe or get information about your managed instances.

type InstancePatchState

type InstancePatchState struct {

	// The ID of the patch baseline used to patch the instance.
	//
	// This member is required.
	BaselineId *string

	// The ID of the managed instance the high-level patch compliance information was
	// collected for.
	//
	// This member is required.
	InstanceId *string

	// The type of patching operation that was performed: SCAN (assess patch compliance
	// state) or INSTALL (install missing patches).
	//
	// This member is required.
	Operation PatchOperationType

	// The time the most recent patching operation completed on the instance.
	//
	// This member is required.
	OperationEndTime *time.Time

	// The time the most recent patching operation was started on the instance.
	//
	// This member is required.
	OperationStartTime *time.Time

	// The name of the patch group the managed instance belongs to.
	//
	// This member is required.
	PatchGroup *string

	// The number of patches from the patch baseline that were attempted to be
	// installed during the last patching operation, but failed to install.
	FailedCount *int32

	// An https URL or an Amazon S3 path-style URL to a list of patches to be
	// installed. This patch installation list, which you maintain in an S3 bucket in
	// YAML format and specify in the SSM document AWS-RunPatchBaseline, overrides the
	// patches specified by the default patch baseline. For more information about the
	// InstallOverrideList parameter, see About the SSM document AWS-RunPatchBaseline
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-about-aws-runpatchbaseline.html)
	// in the AWS Systems Manager User Guide.
	InstallOverrideList *string

	// The number of patches from the patch baseline that are installed on the
	// instance.
	InstalledCount *int32

	// The number of patches not specified in the patch baseline that are installed on
	// the instance.
	InstalledOtherCount *int32

	// The number of patches installed by Patch Manager since the last time the
	// instance was rebooted.
	InstalledPendingRebootCount *int32

	// The number of instances with patches installed that are specified in a
	// RejectedPatches list. Patches with a status of InstalledRejected were typically
	// installed before they were added to a RejectedPatches list. If
	// ALLOW_AS_DEPENDENCY is the specified option for RejectedPatchesAction, the value
	// of InstalledRejectedCount will always be 0 (zero).
	InstalledRejectedCount *int32

	// The time of the last attempt to patch the instance with NoReboot specified as
	// the reboot option.
	LastNoRebootInstallOperationTime *time.Time

	// The number of patches from the patch baseline that are applicable for the
	// instance but aren't currently installed.
	MissingCount *int32

	// The number of patches from the patch baseline that aren't applicable for the
	// instance and therefore aren't installed on the instance. This number may be
	// truncated if the list of patch names is very large. The number of patches beyond
	// this limit are reported in UnreportedNotApplicableCount.
	NotApplicableCount *int32

	// Placeholder information. This field will always be empty in the current release
	// of the service.
	OwnerInformation *string

	// Indicates the reboot option specified in the patch baseline. Reboot options
	// apply to Install operations only. Reboots are not attempted for Patch Manager
	// Scan operations.
	//
	//     * RebootIfNeeded: Patch Manager tries to reboot the
	// instance if it installed any patches, or if any patches are detected with a
	// status of InstalledPendingReboot.
	//
	//     * NoReboot: Patch Manager attempts to
	// install missing packages without trying to reboot the system. Patches installed
	// with this option are assigned a status of InstalledPendingReboot. These patches
	// might not be in effect until a reboot is performed.
	RebootOption RebootOption

	// The ID of the patch baseline snapshot used during the patching operation when
	// this compliance data was collected.
	SnapshotId *string

	// The number of patches beyond the supported limit of NotApplicableCount that are
	// not reported by name to Systems Manager Inventory.
	UnreportedNotApplicableCount *int32
}

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.

type InstancePatchStateFilter

type InstancePatchStateFilter struct {

	// The key for the filter. Supported values are FailedCount, InstalledCount,
	// InstalledOtherCount, MissingCount and NotApplicableCount.
	//
	// This member is required.
	Key *string

	// The type of comparison that should be performed for the value: Equal, NotEqual,
	// LessThan or GreaterThan.
	//
	// This member is required.
	Type InstancePatchStateOperatorType

	// The value for the filter, must be an integer greater than or equal to 0.
	//
	// This member is required.
	Values []*string
}

Defines a filter used in DescribeInstancePatchStatesForPatchGroup used to scope down the information returned by the API.

type InstancePatchStateOperatorType

type InstancePatchStateOperatorType string
const (
	InstancePatchStateOperatorTypeEqual        InstancePatchStateOperatorType = "Equal"
	InstancePatchStateOperatorTypeNot_equal    InstancePatchStateOperatorType = "NotEqual"
	InstancePatchStateOperatorTypeLess_than    InstancePatchStateOperatorType = "LessThan"
	InstancePatchStateOperatorTypeGreater_than InstancePatchStateOperatorType = "GreaterThan"
)

Enum values for InstancePatchStateOperatorType

type InternalServerError

type InternalServerError struct {
	Message *string
}

An error occurred on the server side.

func (*InternalServerError) Error

func (e *InternalServerError) Error() string

func (*InternalServerError) ErrorCode

func (e *InternalServerError) ErrorCode() string

func (*InternalServerError) ErrorFault

func (e *InternalServerError) ErrorFault() smithy.ErrorFault

func (*InternalServerError) ErrorMessage

func (e *InternalServerError) ErrorMessage() string

type InvalidActivation

type InvalidActivation struct {
	Message *string
}

The activation is not valid. The activation might have been deleted, or the ActivationId and the ActivationCode do not match.

func (*InvalidActivation) Error

func (e *InvalidActivation) Error() string

func (*InvalidActivation) ErrorCode

func (e *InvalidActivation) ErrorCode() string

func (*InvalidActivation) ErrorFault

func (e *InvalidActivation) ErrorFault() smithy.ErrorFault

func (*InvalidActivation) ErrorMessage

func (e *InvalidActivation) ErrorMessage() string

type InvalidActivationId

type InvalidActivationId struct {
	Message *string
}

The activation ID is not valid. Verify the you entered the correct ActivationId or ActivationCode and try again.

func (*InvalidActivationId) Error

func (e *InvalidActivationId) Error() string

func (*InvalidActivationId) ErrorCode

func (e *InvalidActivationId) ErrorCode() string

func (*InvalidActivationId) ErrorFault

func (e *InvalidActivationId) ErrorFault() smithy.ErrorFault

func (*InvalidActivationId) ErrorMessage

func (e *InvalidActivationId) ErrorMessage() string

type InvalidAggregatorException

type InvalidAggregatorException struct {
	Message *string
}

The specified aggregator is not valid for inventory groups. Verify that the aggregator uses a valid inventory type such as AWS:Application or AWS:InstanceInformation.

func (*InvalidAggregatorException) Error

func (*InvalidAggregatorException) ErrorCode

func (e *InvalidAggregatorException) ErrorCode() string

func (*InvalidAggregatorException) ErrorFault

func (*InvalidAggregatorException) ErrorMessage

func (e *InvalidAggregatorException) ErrorMessage() string

type InvalidAllowedPatternException

type InvalidAllowedPatternException struct {
	Message *string
}

The request does not meet the regular expression requirement.

func (*InvalidAllowedPatternException) Error

func (*InvalidAllowedPatternException) ErrorCode

func (e *InvalidAllowedPatternException) ErrorCode() string

func (*InvalidAllowedPatternException) ErrorFault

func (*InvalidAllowedPatternException) ErrorMessage

func (e *InvalidAllowedPatternException) ErrorMessage() string

type InvalidAssociation

type InvalidAssociation struct {
	Message *string
}

The association is not valid or does not exist.

func (*InvalidAssociation) Error

func (e *InvalidAssociation) Error() string

func (*InvalidAssociation) ErrorCode

func (e *InvalidAssociation) ErrorCode() string

func (*InvalidAssociation) ErrorFault

func (e *InvalidAssociation) ErrorFault() smithy.ErrorFault

func (*InvalidAssociation) ErrorMessage

func (e *InvalidAssociation) ErrorMessage() string

type InvalidAssociationVersion

type InvalidAssociationVersion struct {
	Message *string
}

The version you specified is not valid. Use ListAssociationVersions to view all versions of an association according to the association ID. Or, use the $LATEST parameter to view the latest version of the association.

func (*InvalidAssociationVersion) Error

func (e *InvalidAssociationVersion) Error() string

func (*InvalidAssociationVersion) ErrorCode

func (e *InvalidAssociationVersion) ErrorCode() string

func (*InvalidAssociationVersion) ErrorFault

func (*InvalidAssociationVersion) ErrorMessage

func (e *InvalidAssociationVersion) ErrorMessage() string

type InvalidAutomationExecutionParametersException

type InvalidAutomationExecutionParametersException struct {
	Message *string
}

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.

func (*InvalidAutomationExecutionParametersException) Error

func (*InvalidAutomationExecutionParametersException) ErrorCode

func (*InvalidAutomationExecutionParametersException) ErrorFault

func (*InvalidAutomationExecutionParametersException) ErrorMessage

type InvalidAutomationSignalException

type InvalidAutomationSignalException struct {
	Message *string
}

The signal is not valid for the current Automation execution.

func (*InvalidAutomationSignalException) Error

func (*InvalidAutomationSignalException) ErrorCode

func (*InvalidAutomationSignalException) ErrorFault

func (*InvalidAutomationSignalException) ErrorMessage

func (e *InvalidAutomationSignalException) ErrorMessage() string

type InvalidAutomationStatusUpdateException

type InvalidAutomationStatusUpdateException struct {
	Message *string
}

The specified update status operation is not valid.

func (*InvalidAutomationStatusUpdateException) Error

func (*InvalidAutomationStatusUpdateException) ErrorCode

func (*InvalidAutomationStatusUpdateException) ErrorFault

func (*InvalidAutomationStatusUpdateException) ErrorMessage

type InvalidCommandId

type InvalidCommandId struct {
	Message *string
}

func (*InvalidCommandId) Error

func (e *InvalidCommandId) Error() string

func (*InvalidCommandId) ErrorCode

func (e *InvalidCommandId) ErrorCode() string

func (*InvalidCommandId) ErrorFault

func (e *InvalidCommandId) ErrorFault() smithy.ErrorFault

func (*InvalidCommandId) ErrorMessage

func (e *InvalidCommandId) ErrorMessage() string

type InvalidDeleteInventoryParametersException

type InvalidDeleteInventoryParametersException struct {
	Message *string
}

One or more of the parameters specified for the delete operation is not valid. Verify all parameters and try again.

func (*InvalidDeleteInventoryParametersException) Error

func (*InvalidDeleteInventoryParametersException) ErrorCode

func (*InvalidDeleteInventoryParametersException) ErrorFault

func (*InvalidDeleteInventoryParametersException) ErrorMessage

type InvalidDeletionIdException

type InvalidDeletionIdException struct {
	Message *string
}

The ID specified for the delete operation does not exist or is not valid. Verify the ID and try again.

func (*InvalidDeletionIdException) Error

func (*InvalidDeletionIdException) ErrorCode

func (e *InvalidDeletionIdException) ErrorCode() string

func (*InvalidDeletionIdException) ErrorFault

func (*InvalidDeletionIdException) ErrorMessage

func (e *InvalidDeletionIdException) ErrorMessage() string

type InvalidDocument

type InvalidDocument struct {
	Message *string
}

The specified document does not exist.

func (*InvalidDocument) Error

func (e *InvalidDocument) Error() string

func (*InvalidDocument) ErrorCode

func (e *InvalidDocument) ErrorCode() string

func (*InvalidDocument) ErrorFault

func (e *InvalidDocument) ErrorFault() smithy.ErrorFault

func (*InvalidDocument) ErrorMessage

func (e *InvalidDocument) ErrorMessage() string

type InvalidDocumentContent

type InvalidDocumentContent struct {
	Message *string
}

The content for the document is not valid.

func (*InvalidDocumentContent) Error

func (e *InvalidDocumentContent) Error() string

func (*InvalidDocumentContent) ErrorCode

func (e *InvalidDocumentContent) ErrorCode() string

func (*InvalidDocumentContent) ErrorFault

func (e *InvalidDocumentContent) ErrorFault() smithy.ErrorFault

func (*InvalidDocumentContent) ErrorMessage

func (e *InvalidDocumentContent) ErrorMessage() string

type InvalidDocumentOperation

type InvalidDocumentOperation struct {
	Message *string
}

You attempted to delete a document while it is still shared. You must stop sharing the document before you can delete it.

func (*InvalidDocumentOperation) Error

func (e *InvalidDocumentOperation) Error() string

func (*InvalidDocumentOperation) ErrorCode

func (e *InvalidDocumentOperation) ErrorCode() string

func (*InvalidDocumentOperation) ErrorFault

func (e *InvalidDocumentOperation) ErrorFault() smithy.ErrorFault

func (*InvalidDocumentOperation) ErrorMessage

func (e *InvalidDocumentOperation) ErrorMessage() string

type InvalidDocumentSchemaVersion

type InvalidDocumentSchemaVersion struct {
	Message *string
}

The version of the document schema is not supported.

func (*InvalidDocumentSchemaVersion) Error

func (*InvalidDocumentSchemaVersion) ErrorCode

func (e *InvalidDocumentSchemaVersion) ErrorCode() string

func (*InvalidDocumentSchemaVersion) ErrorFault

func (*InvalidDocumentSchemaVersion) ErrorMessage

func (e *InvalidDocumentSchemaVersion) ErrorMessage() string

type InvalidDocumentType

type InvalidDocumentType struct {
	Message *string
}

The document type is not valid. Valid document types are described in the DocumentType property.

func (*InvalidDocumentType) Error

func (e *InvalidDocumentType) Error() string

func (*InvalidDocumentType) ErrorCode

func (e *InvalidDocumentType) ErrorCode() string

func (*InvalidDocumentType) ErrorFault

func (e *InvalidDocumentType) ErrorFault() smithy.ErrorFault

func (*InvalidDocumentType) ErrorMessage

func (e *InvalidDocumentType) ErrorMessage() string

type InvalidDocumentVersion

type InvalidDocumentVersion struct {
	Message *string
}

The document version is not valid or does not exist.

func (*InvalidDocumentVersion) Error

func (e *InvalidDocumentVersion) Error() string

func (*InvalidDocumentVersion) ErrorCode

func (e *InvalidDocumentVersion) ErrorCode() string

func (*InvalidDocumentVersion) ErrorFault

func (e *InvalidDocumentVersion) ErrorFault() smithy.ErrorFault

func (*InvalidDocumentVersion) ErrorMessage

func (e *InvalidDocumentVersion) ErrorMessage() string

type InvalidFilter

type InvalidFilter struct {
	Message *string
}

The filter name is not valid. Verify the you entered the correct name and try again.

func (*InvalidFilter) Error

func (e *InvalidFilter) Error() string

func (*InvalidFilter) ErrorCode

func (e *InvalidFilter) ErrorCode() string

func (*InvalidFilter) ErrorFault

func (e *InvalidFilter) ErrorFault() smithy.ErrorFault

func (*InvalidFilter) ErrorMessage

func (e *InvalidFilter) ErrorMessage() string

type InvalidFilterKey

type InvalidFilterKey struct {
	Message *string
}

The specified key is not valid.

func (*InvalidFilterKey) Error

func (e *InvalidFilterKey) Error() string

func (*InvalidFilterKey) ErrorCode

func (e *InvalidFilterKey) ErrorCode() string

func (*InvalidFilterKey) ErrorFault

func (e *InvalidFilterKey) ErrorFault() smithy.ErrorFault

func (*InvalidFilterKey) ErrorMessage

func (e *InvalidFilterKey) ErrorMessage() string

type InvalidFilterOption

type InvalidFilterOption struct {
	Message *string
}

The specified filter option is not valid. Valid options are Equals and BeginsWith. For Path filter, valid options are Recursive and OneLevel.

func (*InvalidFilterOption) Error

func (e *InvalidFilterOption) Error() string

func (*InvalidFilterOption) ErrorCode

func (e *InvalidFilterOption) ErrorCode() string

func (*InvalidFilterOption) ErrorFault

func (e *InvalidFilterOption) ErrorFault() smithy.ErrorFault

func (*InvalidFilterOption) ErrorMessage

func (e *InvalidFilterOption) ErrorMessage() string

type InvalidFilterValue

type InvalidFilterValue struct {
	Message *string
}

The filter value is not valid. Verify the value and try again.

func (*InvalidFilterValue) Error

func (e *InvalidFilterValue) Error() string

func (*InvalidFilterValue) ErrorCode

func (e *InvalidFilterValue) ErrorCode() string

func (*InvalidFilterValue) ErrorFault

func (e *InvalidFilterValue) ErrorFault() smithy.ErrorFault

func (*InvalidFilterValue) ErrorMessage

func (e *InvalidFilterValue) ErrorMessage() string

type InvalidInstanceId

type InvalidInstanceId struct {
	Message *string
}

The following problems can cause this exception: You do not have permission to access the instance. SSM Agent is not running. Verify that SSM Agent is running. SSM Agent is not registered with the SSM endpoint. Try reinstalling SSM Agent. The instance is not in valid state. Valid states are: Running, Pending, Stopped, Stopping. Invalid states are: Shutting-down and Terminated.

func (*InvalidInstanceId) Error

func (e *InvalidInstanceId) Error() string

func (*InvalidInstanceId) ErrorCode

func (e *InvalidInstanceId) ErrorCode() string

func (*InvalidInstanceId) ErrorFault

func (e *InvalidInstanceId) ErrorFault() smithy.ErrorFault

func (*InvalidInstanceId) ErrorMessage

func (e *InvalidInstanceId) ErrorMessage() string

type InvalidInstanceInformationFilterValue

type InvalidInstanceInformationFilterValue struct {
	Message *string
}

The specified filter value is not valid.

func (*InvalidInstanceInformationFilterValue) Error

func (*InvalidInstanceInformationFilterValue) ErrorCode

func (*InvalidInstanceInformationFilterValue) ErrorFault

func (*InvalidInstanceInformationFilterValue) ErrorMessage

type InvalidInventoryGroupException

type InvalidInventoryGroupException struct {
	Message *string
}

The specified inventory group is not valid.

func (*InvalidInventoryGroupException) Error

func (*InvalidInventoryGroupException) ErrorCode

func (e *InvalidInventoryGroupException) ErrorCode() string

func (*InvalidInventoryGroupException) ErrorFault

func (*InvalidInventoryGroupException) ErrorMessage

func (e *InvalidInventoryGroupException) ErrorMessage() string

type InvalidInventoryItemContextException

type InvalidInventoryItemContextException struct {
	Message *string
}

You specified invalid keys or values in the Context attribute for InventoryItem. Verify the keys and values, and try again.

func (*InvalidInventoryItemContextException) Error

func (*InvalidInventoryItemContextException) ErrorCode

func (*InvalidInventoryItemContextException) ErrorFault

func (*InvalidInventoryItemContextException) ErrorMessage

func (e *InvalidInventoryItemContextException) ErrorMessage() string

type InvalidInventoryRequestException

type InvalidInventoryRequestException struct {
	Message *string
}

The request is not valid.

func (*InvalidInventoryRequestException) Error

func (*InvalidInventoryRequestException) ErrorCode

func (*InvalidInventoryRequestException) ErrorFault

func (*InvalidInventoryRequestException) ErrorMessage

func (e *InvalidInventoryRequestException) ErrorMessage() string

type InvalidItemContentException

type InvalidItemContentException struct {
	Message *string

	TypeName *string
}

One or more content items is not valid.

func (*InvalidItemContentException) Error

func (*InvalidItemContentException) ErrorCode

func (e *InvalidItemContentException) ErrorCode() string

func (*InvalidItemContentException) ErrorFault

func (*InvalidItemContentException) ErrorMessage

func (e *InvalidItemContentException) ErrorMessage() string

type InvalidKeyId

type InvalidKeyId struct {
	Message *string
}

The query key ID is not valid.

func (*InvalidKeyId) Error

func (e *InvalidKeyId) Error() string

func (*InvalidKeyId) ErrorCode

func (e *InvalidKeyId) ErrorCode() string

func (*InvalidKeyId) ErrorFault

func (e *InvalidKeyId) ErrorFault() smithy.ErrorFault

func (*InvalidKeyId) ErrorMessage

func (e *InvalidKeyId) ErrorMessage() string

type InvalidNextToken

type InvalidNextToken struct {
	Message *string
}

The specified token is not valid.

func (*InvalidNextToken) Error

func (e *InvalidNextToken) Error() string

func (*InvalidNextToken) ErrorCode

func (e *InvalidNextToken) ErrorCode() string

func (*InvalidNextToken) ErrorFault

func (e *InvalidNextToken) ErrorFault() smithy.ErrorFault

func (*InvalidNextToken) ErrorMessage

func (e *InvalidNextToken) ErrorMessage() string

type InvalidNotificationConfig

type InvalidNotificationConfig struct {
	Message *string
}

One or more configuration items is not valid. Verify that a valid Amazon Resource Name (ARN) was provided for an Amazon SNS topic.

func (*InvalidNotificationConfig) Error

func (e *InvalidNotificationConfig) Error() string

func (*InvalidNotificationConfig) ErrorCode

func (e *InvalidNotificationConfig) ErrorCode() string

func (*InvalidNotificationConfig) ErrorFault

func (*InvalidNotificationConfig) ErrorMessage

func (e *InvalidNotificationConfig) ErrorMessage() string

type InvalidOptionException

type InvalidOptionException struct {
	Message *string
}

The delete inventory option specified is not valid. Verify the option and try again.

func (*InvalidOptionException) Error

func (e *InvalidOptionException) Error() string

func (*InvalidOptionException) ErrorCode

func (e *InvalidOptionException) ErrorCode() string

func (*InvalidOptionException) ErrorFault

func (e *InvalidOptionException) ErrorFault() smithy.ErrorFault

func (*InvalidOptionException) ErrorMessage

func (e *InvalidOptionException) ErrorMessage() string

type InvalidOutputFolder

type InvalidOutputFolder struct {
	Message *string
}

The S3 bucket does not exist.

func (*InvalidOutputFolder) Error

func (e *InvalidOutputFolder) Error() string

func (*InvalidOutputFolder) ErrorCode

func (e *InvalidOutputFolder) ErrorCode() string

func (*InvalidOutputFolder) ErrorFault

func (e *InvalidOutputFolder) ErrorFault() smithy.ErrorFault

func (*InvalidOutputFolder) ErrorMessage

func (e *InvalidOutputFolder) ErrorMessage() string

type InvalidOutputLocation

type InvalidOutputLocation struct {
	Message *string
}

The output location is not valid or does not exist.

func (*InvalidOutputLocation) Error

func (e *InvalidOutputLocation) Error() string

func (*InvalidOutputLocation) ErrorCode

func (e *InvalidOutputLocation) ErrorCode() string

func (*InvalidOutputLocation) ErrorFault

func (e *InvalidOutputLocation) ErrorFault() smithy.ErrorFault

func (*InvalidOutputLocation) ErrorMessage

func (e *InvalidOutputLocation) ErrorMessage() string

type InvalidParameters

type InvalidParameters struct {
	Message *string
}

You must specify values for all required parameters in the Systems Manager document. You can only supply values to parameters defined in the Systems Manager document.

func (*InvalidParameters) Error

func (e *InvalidParameters) Error() string

func (*InvalidParameters) ErrorCode

func (e *InvalidParameters) ErrorCode() string

func (*InvalidParameters) ErrorFault

func (e *InvalidParameters) ErrorFault() smithy.ErrorFault

func (*InvalidParameters) ErrorMessage

func (e *InvalidParameters) ErrorMessage() string

type InvalidPermissionType

type InvalidPermissionType struct {
	Message *string
}

The permission type is not supported. Share is the only supported permission type.

func (*InvalidPermissionType) Error

func (e *InvalidPermissionType) Error() string

func (*InvalidPermissionType) ErrorCode

func (e *InvalidPermissionType) ErrorCode() string

func (*InvalidPermissionType) ErrorFault

func (e *InvalidPermissionType) ErrorFault() smithy.ErrorFault

func (*InvalidPermissionType) ErrorMessage

func (e *InvalidPermissionType) ErrorMessage() string

type InvalidPluginName

type InvalidPluginName struct {
	Message *string
}

The plugin name is not valid.

func (*InvalidPluginName) Error

func (e *InvalidPluginName) Error() string

func (*InvalidPluginName) ErrorCode

func (e *InvalidPluginName) ErrorCode() string

func (*InvalidPluginName) ErrorFault

func (e *InvalidPluginName) ErrorFault() smithy.ErrorFault

func (*InvalidPluginName) ErrorMessage

func (e *InvalidPluginName) ErrorMessage() string

type InvalidPolicyAttributeException

type InvalidPolicyAttributeException struct {
	Message *string
}

A policy attribute or its value is invalid.

func (*InvalidPolicyAttributeException) Error

func (*InvalidPolicyAttributeException) ErrorCode

func (e *InvalidPolicyAttributeException) ErrorCode() string

func (*InvalidPolicyAttributeException) ErrorFault

func (*InvalidPolicyAttributeException) ErrorMessage

func (e *InvalidPolicyAttributeException) ErrorMessage() string

type InvalidPolicyTypeException

type InvalidPolicyTypeException struct {
	Message *string
}

The policy type is not supported. Parameter Store supports the following policy types: Expiration, ExpirationNotification, and NoChangeNotification.

func (*InvalidPolicyTypeException) Error

func (*InvalidPolicyTypeException) ErrorCode

func (e *InvalidPolicyTypeException) ErrorCode() string

func (*InvalidPolicyTypeException) ErrorFault

func (*InvalidPolicyTypeException) ErrorMessage

func (e *InvalidPolicyTypeException) ErrorMessage() string

type InvalidResourceId

type InvalidResourceId struct {
	Message *string
}

The resource ID is not valid. Verify that you entered the correct ID and try again.

func (*InvalidResourceId) Error

func (e *InvalidResourceId) Error() string

func (*InvalidResourceId) ErrorCode

func (e *InvalidResourceId) ErrorCode() string

func (*InvalidResourceId) ErrorFault

func (e *InvalidResourceId) ErrorFault() smithy.ErrorFault

func (*InvalidResourceId) ErrorMessage

func (e *InvalidResourceId) ErrorMessage() string

type InvalidResourceType

type InvalidResourceType struct {
	Message *string
}

The resource type is not valid. For example, if you are attempting to tag an instance, the instance must be a registered, managed instance.

func (*InvalidResourceType) Error

func (e *InvalidResourceType) Error() string

func (*InvalidResourceType) ErrorCode

func (e *InvalidResourceType) ErrorCode() string

func (*InvalidResourceType) ErrorFault

func (e *InvalidResourceType) ErrorFault() smithy.ErrorFault

func (*InvalidResourceType) ErrorMessage

func (e *InvalidResourceType) ErrorMessage() string

type InvalidResultAttributeException

type InvalidResultAttributeException struct {
	Message *string
}

The specified inventory item result attribute is not valid.

func (*InvalidResultAttributeException) Error

func (*InvalidResultAttributeException) ErrorCode

func (e *InvalidResultAttributeException) ErrorCode() string

func (*InvalidResultAttributeException) ErrorFault

func (*InvalidResultAttributeException) ErrorMessage

func (e *InvalidResultAttributeException) ErrorMessage() string

type InvalidRole

type InvalidRole struct {
	Message *string
}

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 Configuring Amazon SNS Notifications for Run Command (https://docs.aws.amazon.com/systems-manager/latest/userguide/rc-sns-notifications.html) in the AWS Systems Manager User Guide.

func (*InvalidRole) Error

func (e *InvalidRole) Error() string

func (*InvalidRole) ErrorCode

func (e *InvalidRole) ErrorCode() string

func (*InvalidRole) ErrorFault

func (e *InvalidRole) ErrorFault() smithy.ErrorFault

func (*InvalidRole) ErrorMessage

func (e *InvalidRole) ErrorMessage() string

type InvalidSchedule

type InvalidSchedule struct {
	Message *string
}

The schedule is invalid. Verify your cron or rate expression and try again.

func (*InvalidSchedule) Error

func (e *InvalidSchedule) Error() string

func (*InvalidSchedule) ErrorCode

func (e *InvalidSchedule) ErrorCode() string

func (*InvalidSchedule) ErrorFault

func (e *InvalidSchedule) ErrorFault() smithy.ErrorFault

func (*InvalidSchedule) ErrorMessage

func (e *InvalidSchedule) ErrorMessage() string

type InvalidTarget

type InvalidTarget struct {
	Message *string
}

The target is not valid or does not exist. It might not be configured for Systems Manager or you might not have permission to perform the operation.

func (*InvalidTarget) Error

func (e *InvalidTarget) Error() string

func (*InvalidTarget) ErrorCode

func (e *InvalidTarget) ErrorCode() string

func (*InvalidTarget) ErrorFault

func (e *InvalidTarget) ErrorFault() smithy.ErrorFault

func (*InvalidTarget) ErrorMessage

func (e *InvalidTarget) ErrorMessage() string

type InvalidTypeNameException

type InvalidTypeNameException struct {
	Message *string
}

The parameter type name is not valid.

func (*InvalidTypeNameException) Error

func (e *InvalidTypeNameException) Error() string

func (*InvalidTypeNameException) ErrorCode

func (e *InvalidTypeNameException) ErrorCode() string

func (*InvalidTypeNameException) ErrorFault

func (e *InvalidTypeNameException) ErrorFault() smithy.ErrorFault

func (*InvalidTypeNameException) ErrorMessage

func (e *InvalidTypeNameException) ErrorMessage() string

type InvalidUpdate

type InvalidUpdate struct {
	Message *string
}

The update is not valid.

func (*InvalidUpdate) Error

func (e *InvalidUpdate) Error() string

func (*InvalidUpdate) ErrorCode

func (e *InvalidUpdate) ErrorCode() string

func (*InvalidUpdate) ErrorFault

func (e *InvalidUpdate) ErrorFault() smithy.ErrorFault

func (*InvalidUpdate) ErrorMessage

func (e *InvalidUpdate) ErrorMessage() string

type InventoryAggregator

type InventoryAggregator struct {

	// Nested aggregators to further refine aggregation for an inventory type.
	Aggregators []*InventoryAggregator

	// The inventory type and attribute name for aggregation.
	Expression *string

	// A user-defined set of one or more filters on which to aggregate inventory data.
	// Groups return a count of resources that match and don't match the specified
	// criteria.
	Groups []*InventoryGroup
}

Specifies the inventory type and attribute for the aggregation execution.

type InventoryAttributeDataType

type InventoryAttributeDataType string
const (
	InventoryAttributeDataTypeString InventoryAttributeDataType = "string"
	InventoryAttributeDataTypeNumber InventoryAttributeDataType = "number"
)

Enum values for InventoryAttributeDataType

type InventoryDeletionStatus

type InventoryDeletionStatus string
const (
	InventoryDeletionStatusIn_progress InventoryDeletionStatus = "InProgress"
	InventoryDeletionStatusComplete    InventoryDeletionStatus = "Complete"
)

Enum values for InventoryDeletionStatus

type InventoryDeletionStatusItem

type InventoryDeletionStatusItem struct {

	// The deletion ID returned by the DeleteInventory action.
	DeletionId *string

	// The UTC timestamp when the delete operation started.
	DeletionStartTime *time.Time

	// Information about the delete operation. For more information about this summary,
	// see Understanding the delete inventory summary
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-custom.html#sysman-inventory-delete)
	// in the AWS Systems Manager User Guide.
	DeletionSummary *InventoryDeletionSummary

	// The status of the operation. Possible values are InProgress and Complete.
	LastStatus InventoryDeletionStatus

	// Information about the status.
	LastStatusMessage *string

	// The UTC timestamp of when the last status report.
	LastStatusUpdateTime *time.Time

	// The name of the inventory data type.
	TypeName *string
}

Status information returned by the DeleteInventory action.

type InventoryDeletionSummary

type InventoryDeletionSummary struct {

	// Remaining number of items to delete.
	RemainingCount *int32

	// A list of counts and versions for deleted items.
	SummaryItems []*InventoryDeletionSummaryItem

	// The total number of items to delete. This count does not change during the
	// delete operation.
	TotalCount *int32
}

Information about the delete operation.

type InventoryDeletionSummaryItem

type InventoryDeletionSummaryItem struct {

	// A count of the number of deleted items.
	Count *int32

	// The remaining number of items to delete.
	RemainingCount *int32

	// The inventory type version.
	Version *string
}

Either a count, remaining count, or a version number in a delete inventory summary.

type InventoryFilter

type InventoryFilter struct {

	// The name of the filter key.
	//
	// This member is required.
	Key *string

	// Inventory filter values. Example: inventory filter where instance IDs are
	// specified as values Key=AWS:InstanceInformation.InstanceId,Values=
	// i-a12b3c4d5e6g, i-1a2b3c4d5e6,Type=Equal
	//
	// This member is required.
	Values []*string

	// The type of filter. The Exists filter must be used with aggregators. For more
	// information, see Aggregating inventory data
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-aggregate.html)
	// in the AWS Systems Manager User Guide.
	Type InventoryQueryOperatorType
}

One or more filters. Use a filter to return a more specific list of results.

type InventoryGroup

type InventoryGroup struct {

	// Filters define the criteria for the group. The matchingCount field displays the
	// number of resources that match the criteria. The notMatchingCount field displays
	// the number of resources that don't match the criteria.
	//
	// This member is required.
	Filters []*InventoryFilter

	// The name of the group.
	//
	// This member is required.
	Name *string
}

A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of resources that match and don't match the specified criteria.

type InventoryItem

type InventoryItem struct {

	// The time the inventory information was collected.
	//
	// This member is required.
	CaptureTime *string

	// The schema version for the inventory item.
	//
	// This member is required.
	SchemaVersion *string

	// 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.
	//
	// This member is required.
	TypeName *string

	// The inventory data of the inventory type.
	Content []map[string]*string

	// 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

	// A map of associated properties for a specified inventory type. For example, with
	// this attribute, you can specify the ExecutionId, ExecutionType, ComplianceType
	// properties of the AWS:ComplianceItem type.
	Context map[string]*string
}

Information collected from managed instances based on your inventory policy document

type InventoryItemAttribute

type InventoryItemAttribute struct {

	// The data type of the inventory item attribute.
	//
	// This member is required.
	DataType InventoryAttributeDataType

	// Name of the inventory item attribute.
	//
	// This member is required.
	Name *string
}

Attributes are the entries within the inventory item content. It contains name and value.

type InventoryItemSchema

type InventoryItemSchema struct {

	// The schema attributes for inventory. This contains data type and attribute name.
	//
	// This member is required.
	Attributes []*InventoryItemAttribute

	// 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.
	//
	// This member is required.
	TypeName *string

	// The alias name of the inventory type. The alias name is used for display
	// purposes.
	DisplayName *string

	// The schema version for the inventory item.
	Version *string
}

The inventory item schema definition. Users can use this to compose inventory query filters.

type InventoryQueryOperatorType

type InventoryQueryOperatorType string
const (
	InventoryQueryOperatorTypeEqual        InventoryQueryOperatorType = "Equal"
	InventoryQueryOperatorTypeNot_equal    InventoryQueryOperatorType = "NotEqual"
	InventoryQueryOperatorTypeBegin_with   InventoryQueryOperatorType = "BeginWith"
	InventoryQueryOperatorTypeLess_than    InventoryQueryOperatorType = "LessThan"
	InventoryQueryOperatorTypeGreater_than InventoryQueryOperatorType = "GreaterThan"
	InventoryQueryOperatorTypeExists       InventoryQueryOperatorType = "Exists"
)

Enum values for InventoryQueryOperatorType

type InventoryResultEntity

type InventoryResultEntity struct {

	// The data section in the inventory result entity JSON.
	Data map[string]*InventoryResultItem

	// 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
}

Inventory query results.

type InventoryResultItem

type InventoryResultItem struct {

	// Contains all the inventory data of the item type. Results include attribute
	// names and values.
	//
	// This member is required.
	Content []map[string]*string

	// The schema version for the inventory result item/
	//
	// This member is required.
	SchemaVersion *string

	// The name of the inventory result item type.
	//
	// This member is required.
	TypeName *string

	// The time inventory item data was captured.
	CaptureTime *string

	// 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
}

The inventory result item.

type InventorySchemaDeleteOption

type InventorySchemaDeleteOption string
const (
	InventorySchemaDeleteOptionDisable_schema InventorySchemaDeleteOption = "DisableSchema"
	InventorySchemaDeleteOptionDelete_schema  InventorySchemaDeleteOption = "DeleteSchema"
)

Enum values for InventorySchemaDeleteOption

type InvocationDoesNotExist

type InvocationDoesNotExist struct {
	Message *string
}

The command ID and instance ID you specified did not match any invocations. Verify the command ID and the instance ID and try again.

func (*InvocationDoesNotExist) Error

func (e *InvocationDoesNotExist) Error() string

func (*InvocationDoesNotExist) ErrorCode

func (e *InvocationDoesNotExist) ErrorCode() string

func (*InvocationDoesNotExist) ErrorFault

func (e *InvocationDoesNotExist) ErrorFault() smithy.ErrorFault

func (*InvocationDoesNotExist) ErrorMessage

func (e *InvocationDoesNotExist) ErrorMessage() string

type ItemContentMismatchException

type ItemContentMismatchException struct {
	Message *string

	TypeName *string
}

The inventory item has invalid content.

func (*ItemContentMismatchException) Error

func (*ItemContentMismatchException) ErrorCode

func (e *ItemContentMismatchException) ErrorCode() string

func (*ItemContentMismatchException) ErrorFault

func (*ItemContentMismatchException) ErrorMessage

func (e *ItemContentMismatchException) ErrorMessage() string

type ItemSizeLimitExceededException

type ItemSizeLimitExceededException struct {
	Message *string

	TypeName *string
}

The inventory item size has exceeded the size limit.

func (*ItemSizeLimitExceededException) Error

func (*ItemSizeLimitExceededException) ErrorCode

func (e *ItemSizeLimitExceededException) ErrorCode() string

func (*ItemSizeLimitExceededException) ErrorFault

func (*ItemSizeLimitExceededException) ErrorMessage

func (e *ItemSizeLimitExceededException) ErrorMessage() string

type LastResourceDataSyncStatus

type LastResourceDataSyncStatus string
const (
	LastResourceDataSyncStatusSuccessful LastResourceDataSyncStatus = "Successful"
	LastResourceDataSyncStatusFailed     LastResourceDataSyncStatus = "Failed"
	LastResourceDataSyncStatusInprogress LastResourceDataSyncStatus = "InProgress"
)

Enum values for LastResourceDataSyncStatus

type LoggingInfo

type LoggingInfo struct {

	// The name of an S3 bucket where execution logs are stored .
	//
	// This member is required.
	S3BucketName *string

	// The Region where the S3 bucket is located.
	//
	// This member is required.
	S3Region *string

	// (Optional) The S3 bucket subfolder.
	S3KeyPrefix *string
}

Information about an S3 bucket to write instance-level logs to. LoggingInfo has been deprecated. To specify an S3 bucket to contain logs, instead use the OutputS3BucketName and OutputS3KeyPrefix options in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters.

type MaintenanceWindowAutomationParameters

type MaintenanceWindowAutomationParameters struct {

	// The version of an Automation document to use during task execution.
	DocumentVersion *string

	// The parameters for the AUTOMATION task. For information about specifying and
	// updating task parameters, see RegisterTaskWithMaintenanceWindow and
	// UpdateMaintenanceWindowTask. LoggingInfo has been deprecated. To specify an S3
	// bucket to contain logs, instead use the OutputS3BucketName and OutputS3KeyPrefix
	// options in the TaskInvocationParameters structure. For information about how
	// Systems Manager handles these options for the supported maintenance window task
	// types, see MaintenanceWindowTaskInvocationParameters. TaskParameters has been
	// deprecated. To specify parameters to pass to a task when it runs, instead use
	// the Parameters option in the TaskInvocationParameters structure. For information
	// about how Systems Manager handles these options for the supported maintenance
	// window task types, see MaintenanceWindowTaskInvocationParameters. For AUTOMATION
	// task types, Systems Manager ignores any values specified for these parameters.
	Parameters map[string][]*string
}

The parameters for an AUTOMATION task type.

type MaintenanceWindowExecution

type MaintenanceWindowExecution struct {

	// The time the execution finished.
	EndTime *time.Time

	// The time the execution started.
	StartTime *time.Time

	// The status of the execution.
	Status MaintenanceWindowExecutionStatus

	// The details explaining the Status. Only available for certain status values.
	StatusDetails *string

	// The ID of the maintenance window execution.
	WindowExecutionId *string

	// The ID of the maintenance window.
	WindowId *string
}

Describes the information about an execution of a maintenance window.

type MaintenanceWindowExecutionStatus

type MaintenanceWindowExecutionStatus string
const (
	MaintenanceWindowExecutionStatusPending            MaintenanceWindowExecutionStatus = "PENDING"
	MaintenanceWindowExecutionStatusInprogress         MaintenanceWindowExecutionStatus = "IN_PROGRESS"
	MaintenanceWindowExecutionStatusSuccess            MaintenanceWindowExecutionStatus = "SUCCESS"
	MaintenanceWindowExecutionStatusFailed             MaintenanceWindowExecutionStatus = "FAILED"
	MaintenanceWindowExecutionStatusTimedout           MaintenanceWindowExecutionStatus = "TIMED_OUT"
	MaintenanceWindowExecutionStatusCancelling         MaintenanceWindowExecutionStatus = "CANCELLING"
	MaintenanceWindowExecutionStatusCancelled          MaintenanceWindowExecutionStatus = "CANCELLED"
	MaintenanceWindowExecutionStatusSkippedoverlapping MaintenanceWindowExecutionStatus = "SKIPPED_OVERLAPPING"
)

Enum values for MaintenanceWindowExecutionStatus

type MaintenanceWindowExecutionTaskIdentity

type MaintenanceWindowExecutionTaskIdentity struct {

	// The time the task execution finished.
	EndTime *time.Time

	// The time the task execution started.
	StartTime *time.Time

	// The status of the task execution.
	Status MaintenanceWindowExecutionStatus

	// The details explaining the status of the task execution. Only available for
	// certain status values.
	StatusDetails *string

	// The ARN of the task that ran.
	TaskArn *string

	// The ID of the specific task execution in the maintenance window execution.
	TaskExecutionId *string

	// The type of task that ran.
	TaskType MaintenanceWindowTaskType

	// The ID of the maintenance window execution that ran the task.
	WindowExecutionId *string
}

Information about a task execution performed as part of a maintenance window execution.

type MaintenanceWindowExecutionTaskInvocationIdentity

type MaintenanceWindowExecutionTaskInvocationIdentity struct {

	// The time the invocation finished.
	EndTime *time.Time

	// 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

	// The ID of the task invocation.
	InvocationId *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

	// The parameters that were provided for the invocation when it was run.
	Parameters *string

	// The time the invocation started.
	StartTime *time.Time

	// The status of the task invocation.
	Status MaintenanceWindowExecutionStatus

	// The details explaining the status of the task invocation. Only available for
	// certain Status values.
	StatusDetails *string

	// The ID of the specific task execution in the maintenance window execution.
	TaskExecutionId *string

	// The task type.
	TaskType MaintenanceWindowTaskType

	// The ID of the maintenance window execution that ran the task.
	WindowExecutionId *string

	// The ID of the target definition in this maintenance window the invocation was
	// performed for.
	WindowTargetId *string
}

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.

type MaintenanceWindowFilter

type MaintenanceWindowFilter struct {

	// The name of the filter.
	Key *string

	// The filter values.
	Values []*string
}

Filter used in the request. Supported filter keys are Name and Enabled.

type MaintenanceWindowIdentity

type MaintenanceWindowIdentity struct {

	// The number of hours before the end of the maintenance window that Systems
	// Manager stops scheduling new tasks for execution.
	Cutoff *int32

	// A description of the maintenance window.
	Description *string

	// The duration of the maintenance window in hours.
	Duration *int32

	// Indicates whether the maintenance window is enabled.
	Enabled *bool

	// The date and time, in ISO-8601 Extended format, for when the maintenance window
	// is scheduled to become inactive.
	EndDate *string

	// The name of the maintenance window.
	Name *string

	// The next time the maintenance window will actually run, taking into account any
	// specified times for the maintenance window to become active or inactive.
	NextExecutionTime *string

	// The schedule of the maintenance window in the form of a cron or rate expression.
	Schedule *string

	// The number of days to wait to run a maintenance window after the scheduled CRON
	// expression date and time.
	ScheduleOffset *int32

	// The time zone that the scheduled maintenance window executions are based on, in
	// Internet Assigned Numbers Authority (IANA) format.
	ScheduleTimezone *string

	// The date and time, in ISO-8601 Extended format, for when the maintenance window
	// is scheduled to become active.
	StartDate *string

	// The ID of the maintenance window.
	WindowId *string
}

Information about the maintenance window.

type MaintenanceWindowIdentityForTarget

type MaintenanceWindowIdentityForTarget struct {

	// The name of the maintenance window.
	Name *string

	// The ID of the maintenance window.
	WindowId *string
}

The maintenance window to which the specified target belongs.

type MaintenanceWindowLambdaParameters

type MaintenanceWindowLambdaParameters struct {

	// Pass client-specific information to the Lambda function that you are invoking.
	// You can then process the client information in your Lambda function as you
	// choose through the context variable.
	ClientContext *string

	// JSON to provide to your Lambda function as input.
	Payload []byte

	// (Optional) Specify a Lambda function version or alias name. If you specify a
	// function version, the action uses the qualified function ARN to invoke a
	// specific Lambda function. If you specify an alias name, the action uses the
	// alias ARN to invoke the Lambda function version to which the alias points.
	Qualifier *string
}

The parameters for a LAMBDA task type. For information about specifying and updating task parameters, see RegisterTaskWithMaintenanceWindow and UpdateMaintenanceWindowTask. LoggingInfo has been deprecated. To specify an S3 bucket to contain logs, instead use the OutputS3BucketName and OutputS3KeyPrefix options in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters. TaskParameters has been deprecated. To specify parameters to pass to a task when it runs, instead use the Parameters option in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters. For Lambda tasks, Systems Manager ignores any values specified for TaskParameters and LoggingInfo.

type MaintenanceWindowResourceType

type MaintenanceWindowResourceType string
const (
	MaintenanceWindowResourceTypeInstance      MaintenanceWindowResourceType = "INSTANCE"
	MaintenanceWindowResourceTypeResourcegroup MaintenanceWindowResourceType = "RESOURCE_GROUP"
)

Enum values for MaintenanceWindowResourceType

type MaintenanceWindowRunCommandParameters

type MaintenanceWindowRunCommandParameters struct {

	// Configuration options for sending command output to CloudWatch Logs.
	CloudWatchOutputConfig *CloudWatchOutputConfig

	// Information about the commands to run.
	Comment *string

	// The SHA-256 or SHA-1 hash created by the system when the document was created.
	// SHA-1 hashes have been deprecated.
	DocumentHash *string

	// SHA-256 or SHA-1. SHA-1 hashes have been deprecated.
	DocumentHashType DocumentHashType

	// The SSM document version to use in the request. You can specify $DEFAULT,
	// $LATEST, or a specific version number. If you run commands by using the AWS CLI,
	// then you must escape the first two options by using a backslash. If you specify
	// a version number, then you don't need to use the backslash. For example:
	// --document-version "\$DEFAULT" --document-version "\$LATEST" --document-version
	// "3"
	DocumentVersion *string

	// Configurations for sending notifications about command status changes on a
	// per-instance basis.
	NotificationConfig *NotificationConfig

	// The name of the S3 bucket.
	OutputS3BucketName *string

	// The S3 bucket subfolder.
	OutputS3KeyPrefix *string

	// The parameters for the RUN_COMMAND task execution.
	Parameters map[string][]*string

	// The ARN of the IAM service role to use to publish Amazon Simple Notification
	// Service (Amazon SNS) notifications for maintenance window Run Command tasks.
	ServiceRoleArn *string

	// If this time is reached and the command has not already started running, it
	// doesn't run.
	TimeoutSeconds *int32
}

The parameters for a RUN_COMMAND task type. For information about specifying and updating task parameters, see RegisterTaskWithMaintenanceWindow and UpdateMaintenanceWindowTask. LoggingInfo has been deprecated. To specify an S3 bucket to contain logs, instead use the OutputS3BucketName and OutputS3KeyPrefix options in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters. TaskParameters has been deprecated. To specify parameters to pass to a task when it runs, instead use the Parameters option in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters. For Run Command tasks, Systems Manager uses specified values for TaskParameters and LoggingInfo only if no values are specified for TaskInvocationParameters.

type MaintenanceWindowStepFunctionsParameters

type MaintenanceWindowStepFunctionsParameters struct {

	// The inputs for the STEP_FUNCTIONS task.
	Input *string

	// The name of the STEP_FUNCTIONS task.
	Name *string
}

The parameters for a STEP_FUNCTIONS task. For information about specifying and updating task parameters, see RegisterTaskWithMaintenanceWindow and UpdateMaintenanceWindowTask. LoggingInfo has been deprecated. To specify an S3 bucket to contain logs, instead use the OutputS3BucketName and OutputS3KeyPrefix options in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters. TaskParameters has been deprecated. To specify parameters to pass to a task when it runs, instead use the Parameters option in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters. For Step Functions tasks, Systems Manager ignores any values specified for TaskParameters and LoggingInfo.

type MaintenanceWindowTarget

type MaintenanceWindowTarget struct {

	// A description for the target.
	Description *string

	// The name for the maintenance window target.
	Name *string

	// A user-provided value that will be included in any CloudWatch events that are
	// raised while running tasks for these targets in this maintenance window.
	OwnerInformation *string

	// The type of target that is being registered with the maintenance window.
	ResourceType MaintenanceWindowResourceType

	// The targets, either instances or tags. Specify instances using the following
	// format: Key=instanceids,Values=, Tags are specified using the following format:
	// Key=,Values=.
	Targets []*Target

	// The ID of the maintenance window to register the target with.
	WindowId *string

	// The ID of the target.
	WindowTargetId *string
}

The target registered with the maintenance window.

type MaintenanceWindowTask

type MaintenanceWindowTask struct {

	// A description of the task.
	Description *string

	// Information about an S3 bucket to write task-level logs to. LoggingInfo has been
	// deprecated. To specify an S3 bucket to contain logs, instead use the
	// OutputS3BucketName and OutputS3KeyPrefix options in the TaskInvocationParameters
	// structure. For information about how Systems Manager handles these options for
	// the supported maintenance window task types, see
	// MaintenanceWindowTaskInvocationParameters.
	LoggingInfo *LoggingInfo

	// The maximum number of targets this task can be run for, in parallel.
	MaxConcurrency *string

	// The maximum number of errors allowed before this task stops being scheduled.
	MaxErrors *string

	// The task name.
	Name *string

	// The priority of the task in the maintenance window. The lower the number, the
	// higher the priority. Tasks that have the same priority are scheduled in
	// parallel.
	Priority *int32

	// The ARN of the IAM service role to use to publish Amazon Simple Notification
	// Service (Amazon SNS) notifications for maintenance window Run Command tasks.
	ServiceRoleArn *string

	// The targets (either instances or tags). Instances are specified using
	// Key=instanceids,Values=,. Tags are specified using Key=,Values=.
	Targets []*Target

	// The resource that the task uses during execution. For RUN_COMMAND and AUTOMATION
	// task types, TaskArn is the Systems Manager document name or ARN. For LAMBDA
	// tasks, it's the function name or ARN. For STEP_FUNCTIONS tasks, it's the state
	// machine ARN.
	TaskArn *string

	// The parameters that should be passed to the task when it is run. TaskParameters
	// has been deprecated. To specify parameters to pass to a task when it runs,
	// instead use the Parameters option in the TaskInvocationParameters structure. For
	// information about how Systems Manager handles these options for the supported
	// maintenance window task types, see MaintenanceWindowTaskInvocationParameters.
	TaskParameters map[string]*MaintenanceWindowTaskParameterValueExpression

	// The type of task. The type can be one of the following: RUN_COMMAND, AUTOMATION,
	// LAMBDA, or STEP_FUNCTIONS.
	Type MaintenanceWindowTaskType

	// The ID of the maintenance window where the task is registered.
	WindowId *string

	// The task ID.
	WindowTaskId *string
}

Information about a task defined for a maintenance window.

type MaintenanceWindowTaskInvocationParameters

type MaintenanceWindowTaskInvocationParameters struct {

	// The parameters for an AUTOMATION task type.
	Automation *MaintenanceWindowAutomationParameters

	// The parameters for a LAMBDA task type.
	Lambda *MaintenanceWindowLambdaParameters

	// The parameters for a RUN_COMMAND task type.
	RunCommand *MaintenanceWindowRunCommandParameters

	// The parameters for a STEP_FUNCTIONS task type.
	StepFunctions *MaintenanceWindowStepFunctionsParameters
}

The parameters for task execution.

type MaintenanceWindowTaskParameterValueExpression

type MaintenanceWindowTaskParameterValueExpression struct {

	// This field contains an array of 0 or more strings, each 1 to 255 characters in
	// length.
	Values []*string
}

Defines the values for a task parameter.

type MaintenanceWindowTaskType

type MaintenanceWindowTaskType string
const (
	MaintenanceWindowTaskTypeRuncommand    MaintenanceWindowTaskType = "RUN_COMMAND"
	MaintenanceWindowTaskTypeAutomation    MaintenanceWindowTaskType = "AUTOMATION"
	MaintenanceWindowTaskTypeStepfunctions MaintenanceWindowTaskType = "STEP_FUNCTIONS"
	MaintenanceWindowTaskTypeLambda        MaintenanceWindowTaskType = "LAMBDA"
)

Enum values for MaintenanceWindowTaskType

type MaxDocumentSizeExceeded

type MaxDocumentSizeExceeded struct {
	Message *string
}

The size limit of a document is 64 KB.

func (*MaxDocumentSizeExceeded) Error

func (e *MaxDocumentSizeExceeded) Error() string

func (*MaxDocumentSizeExceeded) ErrorCode

func (e *MaxDocumentSizeExceeded) ErrorCode() string

func (*MaxDocumentSizeExceeded) ErrorFault

func (e *MaxDocumentSizeExceeded) ErrorFault() smithy.ErrorFault

func (*MaxDocumentSizeExceeded) ErrorMessage

func (e *MaxDocumentSizeExceeded) ErrorMessage() string

type NonCompliantSummary

type NonCompliantSummary struct {

	// The total number of compliance items that are not compliant.
	NonCompliantCount *int32

	// A summary of the non-compliance severity by compliance type
	SeveritySummary *SeveritySummary
}

A summary of resources that are not compliant. The summary is organized according to resource type.

type NotificationConfig

type NotificationConfig struct {

	// An Amazon Resource Name (ARN) for an Amazon Simple Notification Service (Amazon
	// SNS) topic. Run Command pushes notifications about command status changes to
	// this topic.
	NotificationArn *string

	// 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 Systems Manager status
	// changes using Amazon SNS notifications
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/monitoring-sns-notifications.html)
	// in the AWS Systems Manager User Guide.
	NotificationEvents []NotificationEvent

	// 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 NotificationType
}

Configurations for sending notifications.

type NotificationEvent

type NotificationEvent string
const (
	NotificationEventAll         NotificationEvent = "All"
	NotificationEventIn_progress NotificationEvent = "InProgress"
	NotificationEventSuccess     NotificationEvent = "Success"
	NotificationEventTimed_out   NotificationEvent = "TimedOut"
	NotificationEventCancelled   NotificationEvent = "Cancelled"
	NotificationEventFailed      NotificationEvent = "Failed"
)

Enum values for NotificationEvent

type NotificationType

type NotificationType string
const (
	NotificationTypeCommand    NotificationType = "Command"
	NotificationTypeInvocation NotificationType = "Invocation"
)

Enum values for NotificationType

type OperatingSystem

type OperatingSystem string
const (
	OperatingSystemWindows               OperatingSystem = "WINDOWS"
	OperatingSystemAmazonlinux           OperatingSystem = "AMAZON_LINUX"
	OperatingSystemAmazonlinux2          OperatingSystem = "AMAZON_LINUX_2"
	OperatingSystemUbuntu                OperatingSystem = "UBUNTU"
	OperatingSystemRedhatenterpriselinux OperatingSystem = "REDHAT_ENTERPRISE_LINUX"
	OperatingSystemSuse                  OperatingSystem = "SUSE"
	OperatingSystemCentos                OperatingSystem = "CENTOS"
	OperatingSystemOraclelinux           OperatingSystem = "ORACLE_LINUX"
	OperatingSystemDebian                OperatingSystem = "DEBIAN"
)

Enum values for OperatingSystem

type OpsAggregator

type OpsAggregator struct {

	// Either a Range or Count aggregator for limiting an OpsItem summary.
	AggregatorType *string

	// A nested aggregator for viewing counts of OpsItems.
	Aggregators []*OpsAggregator

	// The name of an OpsItem attribute on which to limit the count of OpsItems.
	AttributeName *string

	// The aggregator filters.
	Filters []*OpsFilter

	// The data type name to use for viewing counts of OpsItems.
	TypeName *string

	// The aggregator value.
	Values map[string]*string
}

One or more aggregators for viewing counts of OpsItems using different dimensions such as Source, CreatedTime, or Source and CreatedTime, to name a few.

type OpsEntity

type OpsEntity struct {

	// The data returned by the query.
	Data map[string]*OpsEntityItem

	// The query ID.
	Id *string
}

The result of the query.

type OpsEntityItem

type OpsEntityItem struct {

	// The time OpsItem data was captured.
	CaptureTime *string

	// The detailed data content for an OpsItem summaries result item.
	Content []map[string]*string
}

The OpsItem summaries result item.

type OpsFilter

type OpsFilter struct {

	// The name of the filter.
	//
	// This member is required.
	Key *string

	// The filter value.
	//
	// This member is required.
	Values []*string

	// The type of filter.
	Type OpsFilterOperatorType
}

A filter for viewing OpsItem summaries.

type OpsFilterOperatorType

type OpsFilterOperatorType string
const (
	OpsFilterOperatorTypeEqual        OpsFilterOperatorType = "Equal"
	OpsFilterOperatorTypeNot_equal    OpsFilterOperatorType = "NotEqual"
	OpsFilterOperatorTypeBegin_with   OpsFilterOperatorType = "BeginWith"
	OpsFilterOperatorTypeLess_than    OpsFilterOperatorType = "LessThan"
	OpsFilterOperatorTypeGreater_than OpsFilterOperatorType = "GreaterThan"
	OpsFilterOperatorTypeExists       OpsFilterOperatorType = "Exists"
)

Enum values for OpsFilterOperatorType

type OpsItem

type OpsItem struct {

	// An OpsItem category. Category options include: Availability, Cost, Performance,
	// Recovery, Security.
	Category *string

	// The ARN of the AWS account that created the OpsItem.
	CreatedBy *string

	// The date and time the OpsItem was created.
	CreatedTime *time.Time

	// The OpsItem description.
	Description *string

	// The ARN of the AWS account that last updated the OpsItem.
	LastModifiedBy *string

	// The date and time the OpsItem was last updated.
	LastModifiedTime *time.Time

	// The Amazon Resource Name (ARN) of an SNS topic where notifications are sent when
	// this OpsItem is edited or changed.
	Notifications []*OpsItemNotification

	// Operational data is custom data that provides useful reference details about the
	// OpsItem. For example, you can specify log files, error strings, license keys,
	// troubleshooting tips, or other relevant data. You enter operational data as
	// key-value pairs. The key has a maximum length of 128 characters. The value has a
	// maximum size of 20 KB. Operational data keys can't begin with the following:
	// amazon, aws, amzn, ssm, /amazon, /aws, /amzn, /ssm. You can choose to make the
	// data searchable by other users in the account or you can restrict search access.
	// Searchable data means that all users with access to the OpsItem Overview page
	// (as provided by the DescribeOpsItems API action) can view and search on the
	// specified data. Operational data that is not searchable is only viewable by
	// users who have access to the OpsItem (as provided by the GetOpsItem API action).
	// Use the /aws/resources key in OperationalData to specify a related resource in
	// the request. Use the /aws/automations key in OperationalData to associate an
	// Automation runbook with the OpsItem. To view AWS CLI example commands that use
	// these keys, see Creating OpsItems manually
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems)
	// in the AWS Systems Manager User Guide.
	OperationalData map[string]*OpsItemDataValue

	// The ID of the OpsItem.
	OpsItemId *string

	// The importance of this OpsItem in relation to other OpsItems in the system.
	Priority *int32

	// One or more OpsItems that share something in common with the current OpsItem.
	// For example, related OpsItems can include OpsItems with similar error messages,
	// impacted resources, or statuses for the impacted resource.
	RelatedOpsItems []*RelatedOpsItem

	// The severity of the OpsItem. Severity options range from 1 to 4.
	Severity *string

	// The origin of the OpsItem, such as Amazon EC2 or Systems Manager. The impacted
	// resource is a subset of source.
	Source *string

	// The OpsItem status. Status can be Open, In Progress, or Resolved. For more
	// information, see Editing OpsItem details
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-working-with-OpsItems-editing-details.html)
	// in the AWS Systems Manager User Guide.
	Status OpsItemStatus

	// A short heading that describes the nature of the OpsItem and the impacted
	// resource.
	Title *string

	// The version of this OpsItem. Each time the OpsItem is edited the version number
	// increments by one.
	Version *string
}

Operations engineers and IT professionals use OpsCenter to view, investigate, and remediate operational issues impacting the performance and health of their AWS resources. For more information, see AWS Systems Manager OpsCenter (https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html) in the AWS Systems Manager User Guide.

type OpsItemAlreadyExistsException

type OpsItemAlreadyExistsException struct {
	Message *string

	OpsItemId *string
}

The OpsItem already exists.

func (*OpsItemAlreadyExistsException) Error

func (*OpsItemAlreadyExistsException) ErrorCode

func (e *OpsItemAlreadyExistsException) ErrorCode() string

func (*OpsItemAlreadyExistsException) ErrorFault

func (*OpsItemAlreadyExistsException) ErrorMessage

func (e *OpsItemAlreadyExistsException) ErrorMessage() string

type OpsItemDataType

type OpsItemDataType string
const (
	OpsItemDataTypeSearchable_string OpsItemDataType = "SearchableString"
	OpsItemDataTypeString            OpsItemDataType = "String"
)

Enum values for OpsItemDataType

type OpsItemDataValue

type OpsItemDataValue struct {

	// The type of key-value pair. Valid types include SearchableString and String.
	Type OpsItemDataType

	// The value of the OperationalData key.
	Value *string
}

An object that defines the value of the key and its type in the OperationalData map.

type OpsItemFilter

type OpsItemFilter struct {

	// The name of the filter.
	//
	// This member is required.
	Key OpsItemFilterKey

	// The operator used by the filter call.
	//
	// This member is required.
	Operator OpsItemFilterOperator

	// The filter value.
	//
	// This member is required.
	Values []*string
}

Describes an OpsItem filter.

type OpsItemFilterKey

type OpsItemFilterKey string
const (
	OpsItemFilterKeyStatus                 OpsItemFilterKey = "Status"
	OpsItemFilterKeyCreated_by             OpsItemFilterKey = "CreatedBy"
	OpsItemFilterKeySource                 OpsItemFilterKey = "Source"
	OpsItemFilterKeyPriority               OpsItemFilterKey = "Priority"
	OpsItemFilterKeyTitle                  OpsItemFilterKey = "Title"
	OpsItemFilterKeyOpsitem_id             OpsItemFilterKey = "OpsItemId"
	OpsItemFilterKeyCreated_time           OpsItemFilterKey = "CreatedTime"
	OpsItemFilterKeyLast_modified_time     OpsItemFilterKey = "LastModifiedTime"
	OpsItemFilterKeyOperational_data       OpsItemFilterKey = "OperationalData"
	OpsItemFilterKeyOperational_data_key   OpsItemFilterKey = "OperationalDataKey"
	OpsItemFilterKeyOperational_data_value OpsItemFilterKey = "OperationalDataValue"
	OpsItemFilterKeyResource_id            OpsItemFilterKey = "ResourceId"
	OpsItemFilterKeyAutomation_id          OpsItemFilterKey = "AutomationId"
	OpsItemFilterKeyCategory               OpsItemFilterKey = "Category"
	OpsItemFilterKeySeverity               OpsItemFilterKey = "Severity"
)

Enum values for OpsItemFilterKey

type OpsItemFilterOperator

type OpsItemFilterOperator string
const (
	OpsItemFilterOperatorEqual        OpsItemFilterOperator = "Equal"
	OpsItemFilterOperatorContains     OpsItemFilterOperator = "Contains"
	OpsItemFilterOperatorGreater_than OpsItemFilterOperator = "GreaterThan"
	OpsItemFilterOperatorLess_than    OpsItemFilterOperator = "LessThan"
)

Enum values for OpsItemFilterOperator

type OpsItemInvalidParameterException

type OpsItemInvalidParameterException struct {
	Message *string

	ParameterNames []*string
}

A specified parameter argument isn't valid. Verify the available arguments and try again.

func (*OpsItemInvalidParameterException) Error

func (*OpsItemInvalidParameterException) ErrorCode

func (*OpsItemInvalidParameterException) ErrorFault

func (*OpsItemInvalidParameterException) ErrorMessage

func (e *OpsItemInvalidParameterException) ErrorMessage() string

type OpsItemLimitExceededException

type OpsItemLimitExceededException struct {
	Message *string

	Limit         *int32
	ResourceTypes []*string
	LimitType     *string
}

The request caused OpsItems to exceed one or more quotas. For information about OpsItem quotas, see What are the resource limits for OpsCenter? (https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-learn-more.html#OpsCenter-learn-more-limits).

func (*OpsItemLimitExceededException) Error

func (*OpsItemLimitExceededException) ErrorCode

func (e *OpsItemLimitExceededException) ErrorCode() string

func (*OpsItemLimitExceededException) ErrorFault

func (*OpsItemLimitExceededException) ErrorMessage

func (e *OpsItemLimitExceededException) ErrorMessage() string

type OpsItemNotFoundException

type OpsItemNotFoundException struct {
	Message *string
}

The specified OpsItem ID doesn't exist. Verify the ID and try again.

func (*OpsItemNotFoundException) Error

func (e *OpsItemNotFoundException) Error() string

func (*OpsItemNotFoundException) ErrorCode

func (e *OpsItemNotFoundException) ErrorCode() string

func (*OpsItemNotFoundException) ErrorFault

func (e *OpsItemNotFoundException) ErrorFault() smithy.ErrorFault

func (*OpsItemNotFoundException) ErrorMessage

func (e *OpsItemNotFoundException) ErrorMessage() string

type OpsItemNotification

type OpsItemNotification struct {

	// The Amazon Resource Name (ARN) of an SNS topic where notifications are sent when
	// this OpsItem is edited or changed.
	Arn *string
}

A notification about the OpsItem.

type OpsItemStatus

type OpsItemStatus string
const (
	OpsItemStatusOpen        OpsItemStatus = "Open"
	OpsItemStatusIn_progress OpsItemStatus = "InProgress"
	OpsItemStatusResolved    OpsItemStatus = "Resolved"
)

Enum values for OpsItemStatus

type OpsItemSummary

type OpsItemSummary struct {

	// A list of OpsItems by category.
	Category *string

	// The Amazon Resource Name (ARN) of the IAM entity that created the OpsItem.
	CreatedBy *string

	// The date and time the OpsItem was created.
	CreatedTime *time.Time

	// The Amazon Resource Name (ARN) of the IAM entity that created the OpsItem.
	LastModifiedBy *string

	// The date and time the OpsItem was last updated.
	LastModifiedTime *time.Time

	// Operational data is custom data that provides useful reference details about the
	// OpsItem.
	OperationalData map[string]*OpsItemDataValue

	// The ID of the OpsItem.
	OpsItemId *string

	// The importance of this OpsItem in relation to other OpsItems in the system.
	Priority *int32

	// A list of OpsItems by severity.
	Severity *string

	// The impacted AWS resource.
	Source *string

	// The OpsItem status. Status can be Open, In Progress, or Resolved.
	Status OpsItemStatus

	// A short heading that describes the nature of the OpsItem and the impacted
	// resource.
	Title *string
}

A count of OpsItems.

type OpsResultAttribute

type OpsResultAttribute struct {

	// Name of the data type. Valid value: AWS:OpsItem, AWS:EC2InstanceInformation,
	// AWS:OpsItemTrendline, or AWS:ComplianceSummary.
	//
	// This member is required.
	TypeName *string
}

The OpsItem data type to return.

type OutputSource

type OutputSource struct {

	// The ID of the output source, for example the URL of an S3 bucket.
	OutputSourceId *string

	// The type of source where the association execution details are stored, for
	// example, Amazon S3.
	OutputSourceType *string
}

Information about the source where the association execution details are stored.

type Parameter

type Parameter struct {

	// The Amazon Resource Name (ARN) of the parameter.
	ARN *string

	// The data type of the parameter, such as text or aws:ec2:image. The default is
	// text.
	DataType *string

	// Date the parameter was last changed or updated and the parameter version was
	// created.
	LastModifiedDate *time.Time

	// The name of the parameter.
	Name *string

	// Either the version number or the label used to retrieve the parameter value.
	// Specify selectors by using one of the following formats: parameter_name:version
	// parameter_name:label
	Selector *string

	// Applies to parameters that reference information in other AWS services.
	// SourceResult is the raw result or response from the source.
	SourceResult *string

	// The type of parameter. Valid values include the following: String, StringList,
	// and SecureString.
	Type ParameterType

	// The parameter value.
	Value *string

	// The parameter version.
	Version *int64
}

An Systems Manager parameter in Parameter Store.

type ParameterAlreadyExists

type ParameterAlreadyExists struct {
	Message *string
}

The parameter already exists. You can't create duplicate parameters.

func (*ParameterAlreadyExists) Error

func (e *ParameterAlreadyExists) Error() string

func (*ParameterAlreadyExists) ErrorCode

func (e *ParameterAlreadyExists) ErrorCode() string

func (*ParameterAlreadyExists) ErrorFault

func (e *ParameterAlreadyExists) ErrorFault() smithy.ErrorFault

func (*ParameterAlreadyExists) ErrorMessage

func (e *ParameterAlreadyExists) ErrorMessage() string

type ParameterHistory

type ParameterHistory struct {

	// Parameter names can include the following letters and symbols. a-zA-Z0-9_.-
	AllowedPattern *string

	// The data type of the parameter, such as text or aws:ec2:image. The default is
	// text.
	DataType *string

	// Information about the parameter.
	Description *string

	// The ID of the query key used for this parameter.
	KeyId *string

	// Labels assigned to the parameter version.
	Labels []*string

	// Date the parameter was last changed or updated.
	LastModifiedDate *time.Time

	// Amazon Resource Name (ARN) of the AWS user who last changed the parameter.
	LastModifiedUser *string

	// The name of the parameter.
	Name *string

	// Information about the policies assigned to a parameter. Assigning parameter
	// policies
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html)
	// in the AWS Systems Manager User Guide.
	Policies []*ParameterInlinePolicy

	// The parameter tier.
	Tier ParameterTier

	// The type of parameter used.
	Type ParameterType

	// The parameter value.
	Value *string

	// The parameter version.
	Version *int64
}

Information about parameter usage.

type ParameterInlinePolicy

type ParameterInlinePolicy struct {

	// The status of the policy. Policies report the following statuses: Pending (the
	// policy has not been enforced or applied yet), Finished (the policy was applied),
	// Failed (the policy was not applied), or InProgress (the policy is being applied
	// now).
	PolicyStatus *string

	// The JSON text of the policy.
	PolicyText *string

	// The type of policy. Parameter Store supports the following policy types:
	// Expiration, ExpirationNotification, and NoChangeNotification.
	PolicyType *string
}

One or more policies assigned to a parameter.

type ParameterLimitExceeded

type ParameterLimitExceeded struct {
	Message *string
}

You have exceeded the number of parameters for this AWS account. Delete one or more parameters and try again.

func (*ParameterLimitExceeded) Error

func (e *ParameterLimitExceeded) Error() string

func (*ParameterLimitExceeded) ErrorCode

func (e *ParameterLimitExceeded) ErrorCode() string

func (*ParameterLimitExceeded) ErrorFault

func (e *ParameterLimitExceeded) ErrorFault() smithy.ErrorFault

func (*ParameterLimitExceeded) ErrorMessage

func (e *ParameterLimitExceeded) ErrorMessage() string

type ParameterMaxVersionLimitExceeded

type ParameterMaxVersionLimitExceeded struct {
	Message *string
}

The parameter exceeded the maximum number of allowed versions.

func (*ParameterMaxVersionLimitExceeded) Error

func (*ParameterMaxVersionLimitExceeded) ErrorCode

func (*ParameterMaxVersionLimitExceeded) ErrorFault

func (*ParameterMaxVersionLimitExceeded) ErrorMessage

func (e *ParameterMaxVersionLimitExceeded) ErrorMessage() string

type ParameterMetadata

type ParameterMetadata struct {

	// A parameter name can include only the following letters and symbols.
	// a-zA-Z0-9_.-
	AllowedPattern *string

	// The data type of the parameter, such as text or aws:ec2:image. The default is
	// text.
	DataType *string

	// Description of the parameter actions.
	Description *string

	// The ID of the query key used for this parameter.
	KeyId *string

	// Date the parameter was last changed or updated.
	LastModifiedDate *time.Time

	// Amazon Resource Name (ARN) of the AWS user who last changed the parameter.
	LastModifiedUser *string

	// The parameter name.
	Name *string

	// A list of policies associated with a parameter.
	Policies []*ParameterInlinePolicy

	// The parameter tier.
	Tier ParameterTier

	// The type of parameter. Valid parameter types include the following: String,
	// StringList, and SecureString.
	Type ParameterType

	// The parameter version.
	Version *int64
}

Metadata includes information like the ARN of the last user and the date/time the parameter was last used.

type ParameterNotFound

type ParameterNotFound struct {
	Message *string
}

The parameter could not be found. Verify the name and try again.

func (*ParameterNotFound) Error

func (e *ParameterNotFound) Error() string

func (*ParameterNotFound) ErrorCode

func (e *ParameterNotFound) ErrorCode() string

func (*ParameterNotFound) ErrorFault

func (e *ParameterNotFound) ErrorFault() smithy.ErrorFault

func (*ParameterNotFound) ErrorMessage

func (e *ParameterNotFound) ErrorMessage() string

type ParameterPatternMismatchException

type ParameterPatternMismatchException struct {
	Message *string
}

The parameter name is not valid.

func (*ParameterPatternMismatchException) Error

func (*ParameterPatternMismatchException) ErrorCode

func (*ParameterPatternMismatchException) ErrorFault

func (*ParameterPatternMismatchException) ErrorMessage

func (e *ParameterPatternMismatchException) ErrorMessage() string

type ParameterStringFilter

type ParameterStringFilter struct {

	// The name of the filter.
	//
	// This member is required.
	Key *string

	// For all filters used with DescribeParameters, valid options include Equals and
	// BeginsWith. The Name filter additionally supports the Contains option.
	// (Exception: For filters using the key Path, valid options include Recursive and
	// OneLevel.) For filters used with GetParametersByPath, valid options include
	// Equals and BeginsWith. (Exception: For filters using the key Label, the only
	// valid option is Equals.)
	Option *string

	// The value you want to search for.
	Values []*string
}

One or more filters. Use a filter to return a more specific list of results. The ParameterStringFilter object is used by the DescribeParameters and GetParametersByPath API actions. However, not all of the pattern values listed for Key can be used with both actions. For DescribeActions, all of the listed patterns are valid, with the exception of Label. For GetParametersByPath, the following patterns listed for Key are not valid: Name, Path, and Tier. For examples of CLI commands demonstrating valid parameter filter constructions, see Searching for Systems Manager parameters (https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-search.html) in the AWS Systems Manager User Guide.

type ParameterTier

type ParameterTier string
const (
	ParameterTierStandard            ParameterTier = "Standard"
	ParameterTierAdvanced            ParameterTier = "Advanced"
	ParameterTierIntelligent_tiering ParameterTier = "Intelligent-Tiering"
)

Enum values for ParameterTier

type ParameterType

type ParameterType string
const (
	ParameterTypeString        ParameterType = "String"
	ParameterTypeString_list   ParameterType = "StringList"
	ParameterTypeSecure_string ParameterType = "SecureString"
)

Enum values for ParameterType

type ParameterVersionLabelLimitExceeded

type ParameterVersionLabelLimitExceeded struct {
	Message *string
}

A parameter version can have a maximum of ten labels.

func (*ParameterVersionLabelLimitExceeded) Error

func (*ParameterVersionLabelLimitExceeded) ErrorCode

func (*ParameterVersionLabelLimitExceeded) ErrorFault

func (*ParameterVersionLabelLimitExceeded) ErrorMessage

func (e *ParameterVersionLabelLimitExceeded) ErrorMessage() string

type ParameterVersionNotFound

type ParameterVersionNotFound struct {
	Message *string
}

The specified parameter version was not found. Verify the parameter name and version, and try again.

func (*ParameterVersionNotFound) Error

func (e *ParameterVersionNotFound) Error() string

func (*ParameterVersionNotFound) ErrorCode

func (e *ParameterVersionNotFound) ErrorCode() string

func (*ParameterVersionNotFound) ErrorFault

func (e *ParameterVersionNotFound) ErrorFault() smithy.ErrorFault

func (*ParameterVersionNotFound) ErrorMessage

func (e *ParameterVersionNotFound) ErrorMessage() string

type ParametersFilter

type ParametersFilter struct {

	// The name of the filter.
	//
	// This member is required.
	Key ParametersFilterKey

	// The filter values.
	//
	// This member is required.
	Values []*string
}

This data type is deprecated. Instead, use ParameterStringFilter.

type ParametersFilterKey

type ParametersFilterKey string
const (
	ParametersFilterKeyName   ParametersFilterKey = "Name"
	ParametersFilterKeyType   ParametersFilterKey = "Type"
	ParametersFilterKeyKey_id ParametersFilterKey = "KeyId"
)

Enum values for ParametersFilterKey

type Patch

type Patch struct {

	// The classification of the patch (for example, SecurityUpdates, Updates,
	// CriticalUpdates).
	Classification *string

	// The URL where more information can be obtained about the patch.
	ContentUrl *string

	// The description of the patch.
	Description *string

	// The ID of the patch (this is different than the Microsoft Knowledge Base ID).
	Id *string

	// The Microsoft Knowledge Base ID of the patch.
	KbNumber *string

	// The language of the patch if it's language-specific.
	Language *string

	// The ID of the MSRC bulletin the patch is related to.
	MsrcNumber *string

	// The severity of the patch (for example Critical, Important, Moderate).
	MsrcSeverity *string

	// The specific product the patch is applicable for (for example,
	// WindowsServer2016).
	Product *string

	// The product family the patch is applicable for (for example, Windows).
	ProductFamily *string

	// The date the patch was released.
	ReleaseDate *time.Time

	// The title of the patch.
	Title *string

	// The name of the vendor providing the patch.
	Vendor *string
}

Represents metadata about a patch.

type PatchAction

type PatchAction string
const (
	PatchActionAllowasdependency PatchAction = "ALLOW_AS_DEPENDENCY"
	PatchActionBlock             PatchAction = "BLOCK"
)

Enum values for PatchAction

type PatchBaselineIdentity

type PatchBaselineIdentity struct {

	// The description of the patch baseline.
	BaselineDescription *string

	// The ID of the patch baseline.
	BaselineId *string

	// The name of the patch baseline.
	BaselineName *string

	// Whether this is the default baseline. Note that Systems Manager supports
	// creating multiple default patch baselines. For example, you can create a default
	// patch baseline for each operating system.
	DefaultBaseline *bool

	// Defines the operating system the patch baseline applies to. The Default value is
	// WINDOWS.
	OperatingSystem OperatingSystem
}

Defines the basic information about a patch baseline.

type PatchComplianceData

type PatchComplianceData struct {

	// The classification of the patch (for example, SecurityUpdates, Updates,
	// CriticalUpdates).
	//
	// This member is required.
	Classification *string

	// The date/time the patch was installed on the instance. Note that not all
	// operating systems provide this level of information.
	//
	// This member is required.
	InstalledTime *time.Time

	// The operating system-specific ID of the patch.
	//
	// This member is required.
	KBId *string

	// The severity of the patch (for example, Critical, Important, Moderate).
	//
	// This member is required.
	Severity *string

	// The state of the patch on the instance, such as INSTALLED or FAILED. For
	// descriptions of each patch state, see About patch compliance
	// (https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-compliance-about.html#sysman-compliance-monitor-patch)
	// in the AWS Systems Manager User Guide.
	//
	// This member is required.
	State PatchComplianceDataState

	// The title of the patch.
	//
	// This member is required.
	Title *string
}

Information about the state of a patch on a particular instance as it relates to the patch baseline used to patch the instance.

type PatchComplianceDataState

type PatchComplianceDataState string
const (
	PatchComplianceDataStateInstalled              PatchComplianceDataState = "INSTALLED"
	PatchComplianceDataStateInstalledother         PatchComplianceDataState = "INSTALLED_OTHER"
	PatchComplianceDataStateInstalledpendingreboot PatchComplianceDataState = "INSTALLED_PENDING_REBOOT"
	PatchComplianceDataStateInstalledrejected      PatchComplianceDataState = "INSTALLED_REJECTED"
	PatchComplianceDataStateMissing                PatchComplianceDataState = "MISSING"
	PatchComplianceDataStateNotapplicable          PatchComplianceDataState = "NOT_APPLICABLE"
	PatchComplianceDataStateFailed                 PatchComplianceDataState = "FAILED"
)

Enum values for PatchComplianceDataState

type PatchComplianceLevel

type PatchComplianceLevel string
const (
	PatchComplianceLevelCritical      PatchComplianceLevel = "CRITICAL"
	PatchComplianceLevelHigh          PatchComplianceLevel = "HIGH"
	PatchComplianceLevelMedium        PatchComplianceLevel = "MEDIUM"
	PatchComplianceLevelLow           PatchComplianceLevel = "LOW"
	PatchComplianceLevelInformational PatchComplianceLevel = "INFORMATIONAL"
	PatchComplianceLevelUnspecified   PatchComplianceLevel = "UNSPECIFIED"
)

Enum values for PatchComplianceLevel

type PatchDeploymentStatus

type PatchDeploymentStatus string
const (
	PatchDeploymentStatusApproved         PatchDeploymentStatus = "APPROVED"
	PatchDeploymentStatusPendingapproval  PatchDeploymentStatus = "PENDING_APPROVAL"
	PatchDeploymentStatusExplicitapproved PatchDeploymentStatus = "EXPLICIT_APPROVED"
	PatchDeploymentStatusExplicitrejected PatchDeploymentStatus = "EXPLICIT_REJECTED"
)

Enum values for PatchDeploymentStatus

type PatchFilter

type PatchFilter struct {

	// The key for the filter. Run the DescribePatchProperties command to view lists of
	// valid keys for each operating system type.
	//
	// This member is required.
	Key PatchFilterKey

	// The value for the filter key. Run the DescribePatchProperties command to view
	// lists of valid values for each key based on operating system type.
	//
	// This member is required.
	Values []*string
}

Defines which patches should be included in a patch baseline. A patch filter consists of a key and a set of values. The filter key is a patch property. For example, the available filter keys for WINDOWS are PATCH_SET, PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, and MSRC_SEVERITY. The filter values define a matching criterion for the patch property indicated by the key. For example, if the filter key is PRODUCT and the filter values are ["Office 2013", "Office 2016"], then the filter accepts all patches where product name is either "Office 2013" or "Office 2016". The filter values can be exact values for the patch property given as a key, or a wildcard (*), which matches all values. You can view lists of valid values for the patch properties by running the DescribePatchProperties command. For information about which patch properties can be used with each major operating system, see DescribePatchProperties.

type PatchFilterGroup

type PatchFilterGroup struct {

	// The set of patch filters that make up the group.
	//
	// This member is required.
	PatchFilters []*PatchFilter
}

A set of patch filters, typically used for approval rules.

type PatchFilterKey

type PatchFilterKey string
const (
	PatchFilterKeyPatchset       PatchFilterKey = "PATCH_SET"
	PatchFilterKeyProduct        PatchFilterKey = "PRODUCT"
	PatchFilterKeyProductfamily  PatchFilterKey = "PRODUCT_FAMILY"
	PatchFilterKeyClassification PatchFilterKey = "CLASSIFICATION"
	PatchFilterKeyMsrcseverity   PatchFilterKey = "MSRC_SEVERITY"
	PatchFilterKeyPatchid        PatchFilterKey = "PATCH_ID"
	PatchFilterKeySection        PatchFilterKey = "SECTION"
	PatchFilterKeyPriority       PatchFilterKey = "PRIORITY"
	PatchFilterKeySeverity       PatchFilterKey = "SEVERITY"
)

Enum values for PatchFilterKey

type PatchGroupPatchBaselineMapping

type PatchGroupPatchBaselineMapping struct {

	// The patch baseline the patch group is registered with.
	BaselineIdentity *PatchBaselineIdentity

	// The name of the patch group registered with the patch baseline.
	PatchGroup *string
}

The mapping between a patch group and the patch baseline the patch group is registered with.

type PatchOperationType

type PatchOperationType string
const (
	PatchOperationTypeScan    PatchOperationType = "Scan"
	PatchOperationTypeInstall PatchOperationType = "Install"
)

Enum values for PatchOperationType

type PatchOrchestratorFilter

type PatchOrchestratorFilter struct {

	// The key for the filter.
	Key *string

	// The value for the filter.
	Values []*string
}

Defines a filter used in Patch Manager APIs.

type PatchProperty

type PatchProperty string
const (
	PatchPropertyProduct             PatchProperty = "PRODUCT"
	PatchPropertyPatchproductfamily  PatchProperty = "PRODUCT_FAMILY"
	PatchPropertyPatchclassification PatchProperty = "CLASSIFICATION"
	PatchPropertyPatchmsrcseverity   PatchProperty = "MSRC_SEVERITY"
	PatchPropertyPatchpriority       PatchProperty = "PRIORITY"
	PatchPropertyPatchseverity       PatchProperty = "SEVERITY"
)

Enum values for PatchProperty

type PatchRule

type PatchRule struct {

	// The patch filter group that defines the criteria for the rule.
	//
	// This member is required.
	PatchFilterGroup *PatchFilterGroup

	// The number of days after the release date of each patch matched by the rule that
	// the patch is marked as approved in the patch baseline. For example, a value of 7
	// means that patches are approved seven days after they are released. Not
	// supported on Ubuntu Server.
	ApproveAfterDays *int32

	// The cutoff date for auto approval of released patches. Any patches released on
	// or before this date are installed automatically. Not supported on Ubuntu Server.
	// Enter dates in the format YYYY-MM-DD. For example, 2020-12-31.
	ApproveUntilDate *string

	// A compliance severity level for all approved patches in a patch baseline.
	ComplianceLevel PatchComplianceLevel

	// For instances identified by the approval rule filters, enables a patch baseline
	// to apply non-security updates available in the specified repository. The default
	// value is 'false'. Applies to Linux instances only.
	EnableNonSecurity *bool
}

Defines an approval rule for a patch baseline.

type PatchRuleGroup

type PatchRuleGroup struct {

	// The rules that make up the rule group.
	//
	// This member is required.
	PatchRules []*PatchRule
}

A set of rules defining the approval rules for a patch baseline.

type PatchSet

type PatchSet string
const (
	PatchSetOs          PatchSet = "OS"
	PatchSetApplication PatchSet = "APPLICATION"
)

Enum values for PatchSet

type PatchSource

type PatchSource struct {

	// The value of the yum repo configuration. For example: [main]
	//
	// cachedir=/var/cache/yum/$basesearch$releasever
	//
	//     keepcache=0
	//
	//
	// debuglevel=2
	//
	// This member is required.
	Configuration *string

	// The name specified to identify the patch source.
	//
	// This member is required.
	Name *string

	// The specific operating system versions a patch repository applies to, such as
	// "Ubuntu16.04", "AmazonLinux2016.09", "RedhatEnterpriseLinux7.2" or "Suse12.7".
	// For lists of supported product values, see PatchFilter.
	//
	// This member is required.
	Products []*string
}

Information about the patches to use to update the instances, including target operating systems and source repository. Applies to Linux instances only.

type PatchStatus

type PatchStatus struct {

	// The date the patch was approved (or will be approved if the status is
	// PENDING_APPROVAL).
	ApprovalDate *time.Time

	// The compliance severity level for a patch.
	ComplianceLevel PatchComplianceLevel

	// The approval status of a patch (APPROVED, PENDING_APPROVAL, EXPLICIT_APPROVED,
	// EXPLICIT_REJECTED).
	DeploymentStatus PatchDeploymentStatus
}

Information about the approval status of a patch.

type PingStatus

type PingStatus string
const (
	PingStatusOnline          PingStatus = "Online"
	PingStatusConnection_lost PingStatus = "ConnectionLost"
	PingStatusInactive        PingStatus = "Inactive"
)

Enum values for PingStatus

type PlatformType

type PlatformType string
const (
	PlatformTypeWindows PlatformType = "Windows"
	PlatformTypeLinux   PlatformType = "Linux"
)

Enum values for PlatformType

type PoliciesLimitExceededException

type PoliciesLimitExceededException struct {
	Message *string
}

You specified more than the maximum number of allowed policies for the parameter. The maximum is 10.

func (*PoliciesLimitExceededException) Error

func (*PoliciesLimitExceededException) ErrorCode

func (e *PoliciesLimitExceededException) ErrorCode() string

func (*PoliciesLimitExceededException) ErrorFault

func (*PoliciesLimitExceededException) ErrorMessage

func (e *PoliciesLimitExceededException) ErrorMessage() string

type ProgressCounters

type ProgressCounters struct {

	// The total number of steps that the system cancelled in all specified AWS Regions
	// and accounts for the current Automation execution.
	CancelledSteps *int32

	// The total number of steps that failed to run in all specified AWS Regions and
	// accounts for the current Automation execution.
	FailedSteps *int32

	// The total number of steps that successfully completed in all specified AWS
	// Regions and accounts for the current Automation execution.
	SuccessSteps *int32

	// The total number of steps that timed out in all specified AWS Regions and
	// accounts for the current Automation execution.
	TimedOutSteps *int32

	// The total number of steps run in all specified AWS Regions and accounts for the
	// current Automation execution.
	TotalSteps *int32
}

An aggregate of step execution statuses displayed in the AWS Console for a multi-Region and multi-account Automation execution.

type RebootOption

type RebootOption string
const (
	RebootOptionReboot_if_needed RebootOption = "RebootIfNeeded"
	RebootOptionNo_reboot        RebootOption = "NoReboot"
)

Enum values for RebootOption

type RelatedOpsItem

type RelatedOpsItem struct {

	// The ID of an OpsItem related to the current OpsItem.
	//
	// This member is required.
	OpsItemId *string
}

An OpsItems that shares something in common with the current OpsItem. For example, related OpsItems can include OpsItems with similar error messages, impacted resources, or statuses for the impacted resource.

type ResolvedTargets

type ResolvedTargets struct {

	// A list of parameter values sent to targets that resolved during the Automation
	// execution.
	ParameterValues []*string

	// A boolean value indicating whether the resolved target list is truncated.
	Truncated *bool
}

Information about targets that resolved during the Automation execution.

type ResourceComplianceSummaryItem

type ResourceComplianceSummaryItem struct {

	// The compliance type.
	ComplianceType *string

	// A list of items that are compliant for the resource.
	CompliantSummary *CompliantSummary

	// Information about the execution.
	ExecutionSummary *ComplianceExecutionSummary

	// A list of items that aren't compliant for the resource.
	NonCompliantSummary *NonCompliantSummary

	// The highest severity item found for the resource. The resource is compliant for
	// this item.
	OverallSeverity ComplianceSeverity

	// The resource ID.
	ResourceId *string

	// The resource type.
	ResourceType *string

	// The compliance status for the resource.
	Status ComplianceStatus
}

Compliance summary information for a specific resource.

type ResourceDataSyncAlreadyExistsException

type ResourceDataSyncAlreadyExistsException struct {
	Message *string

	SyncName *string
}

A sync configuration with the same name already exists.

func (*ResourceDataSyncAlreadyExistsException) Error

func (*ResourceDataSyncAlreadyExistsException) ErrorCode

func (*ResourceDataSyncAlreadyExistsException) ErrorFault

func (*ResourceDataSyncAlreadyExistsException) ErrorMessage

type ResourceDataSyncAwsOrganizationsSource

type ResourceDataSyncAwsOrganizationsSource struct {

	// If an AWS Organization is present, this is either OrganizationalUnits or
	// EntireOrganization. For OrganizationalUnits, the data is aggregated from a set
	// of organization units. For EntireOrganization, the data is aggregated from the
	// entire AWS Organization.
	//
	// This member is required.
	OrganizationSourceType *string

	// The AWS Organizations organization units included in the sync.
	OrganizationalUnits []*ResourceDataSyncOrganizationalUnit
}

Information about the AwsOrganizationsSource resource data sync source. A sync source of this type can synchronize data from AWS Organizations or, if an AWS Organization is not present, from multiple AWS Regions.

type ResourceDataSyncConflictException

type ResourceDataSyncConflictException struct {
	Message *string
}

Another UpdateResourceDataSync request is being processed. Wait a few minutes and try again.

func (*ResourceDataSyncConflictException) Error

func (*ResourceDataSyncConflictException) ErrorCode

func (*ResourceDataSyncConflictException) ErrorFault

func (*ResourceDataSyncConflictException) ErrorMessage

func (e *ResourceDataSyncConflictException) ErrorMessage() string

type ResourceDataSyncCountExceededException

type ResourceDataSyncCountExceededException struct {
	Message *string
}

You have exceeded the allowed maximum sync configurations.

func (*ResourceDataSyncCountExceededException) Error

func (*ResourceDataSyncCountExceededException) ErrorCode

func (*ResourceDataSyncCountExceededException) ErrorFault

func (*ResourceDataSyncCountExceededException) ErrorMessage

type ResourceDataSyncDestinationDataSharing

type ResourceDataSyncDestinationDataSharing struct {

	// The sharing data type. Only Organization is supported.
	DestinationDataSharingType *string
}

Synchronize Systems Manager Inventory data from multiple AWS accounts defined in AWS Organizations to a centralized S3 bucket. Data is synchronized to individual key prefixes in the central bucket. Each key prefix represents a different AWS account ID.

type ResourceDataSyncInvalidConfigurationException

type ResourceDataSyncInvalidConfigurationException struct {
	Message *string
}

The specified sync configuration is invalid.

func (*ResourceDataSyncInvalidConfigurationException) Error

func (*ResourceDataSyncInvalidConfigurationException) ErrorCode

func (*ResourceDataSyncInvalidConfigurationException) ErrorFault

func (*ResourceDataSyncInvalidConfigurationException) ErrorMessage

type ResourceDataSyncItem

type ResourceDataSyncItem struct {

	// The status reported by the last sync.
	LastStatus LastResourceDataSyncStatus

	// The last time the sync operations returned a status of SUCCESSFUL (UTC).
	LastSuccessfulSyncTime *time.Time

	// The status message details reported by the last sync.
	LastSyncStatusMessage *string

	// The last time the configuration attempted to sync (UTC).
	LastSyncTime *time.Time

	// Configuration information for the target S3 bucket.
	S3Destination *ResourceDataSyncS3Destination

	// The date and time the configuration was created (UTC).
	SyncCreatedTime *time.Time

	// The date and time the resource data sync was changed.
	SyncLastModifiedTime *time.Time

	// The name of the Resource Data Sync.
	SyncName *string

	// Information about the source where the data was synchronized.
	SyncSource *ResourceDataSyncSourceWithState

	// The type of resource data sync. If SyncType is SyncToDestination, then the
	// resource data sync synchronizes data to an S3 bucket. If the SyncType is
	// SyncFromSource then the resource data sync synchronizes data from AWS
	// Organizations or from multiple AWS Regions.
	SyncType *string
}

Information about a Resource Data Sync configuration, including its current status and last successful sync.

type ResourceDataSyncNotFoundException

type ResourceDataSyncNotFoundException struct {
	Message *string

	SyncType *string
	SyncName *string
}

The specified sync name was not found.

func (*ResourceDataSyncNotFoundException) Error

func (*ResourceDataSyncNotFoundException) ErrorCode

func (*ResourceDataSyncNotFoundException) ErrorFault

func (*ResourceDataSyncNotFoundException) ErrorMessage

func (e *ResourceDataSyncNotFoundException) ErrorMessage() string

type ResourceDataSyncOrganizationalUnit

type ResourceDataSyncOrganizationalUnit struct {

	// The AWS Organization unit ID data source for the sync.
	OrganizationalUnitId *string
}

The AWS Organizations organizational unit data source for the sync.

type ResourceDataSyncS3Destination

type ResourceDataSyncS3Destination struct {

	// The name of the S3 bucket where the aggregated data is stored.
	//
	// This member is required.
	BucketName *string

	// The AWS Region with the S3 bucket targeted by the Resource Data Sync.
	//
	// This member is required.
	Region *string

	// A supported sync format. The following format is currently supported: JsonSerDe
	//
	// This member is required.
	SyncFormat ResourceDataSyncS3Format

	// The ARN of an encryption key for a destination in Amazon S3. Must belong to the
	// same Region as the destination S3 bucket.
	AWSKMSKeyARN *string

	// Enables destination data sharing. By default, this field is null.
	DestinationDataSharing *ResourceDataSyncDestinationDataSharing

	// An Amazon S3 prefix for the bucket.
	Prefix *string
}

Information about the target S3 bucket for the Resource Data Sync.

type ResourceDataSyncS3Format

type ResourceDataSyncS3Format string
const (
	ResourceDataSyncS3FormatJson_serde ResourceDataSyncS3Format = "JsonSerDe"
)

Enum values for ResourceDataSyncS3Format

type ResourceDataSyncSource

type ResourceDataSyncSource struct {

	// The SyncSource AWS Regions included in the resource data sync.
	//
	// This member is required.
	SourceRegions []*string

	// The type of data source for the resource data sync. SourceType is either
	// AwsOrganizations (if an organization is present in AWS Organizations) or
	// singleAccountMultiRegions.
	//
	// This member is required.
	SourceType *string

	// Information about the AwsOrganizationsSource resource data sync source. A sync
	// source of this type can synchronize data from AWS Organizations.
	AwsOrganizationsSource *ResourceDataSyncAwsOrganizationsSource

	// Whether to automatically synchronize and aggregate data from new AWS Regions
	// when those Regions come online.
	IncludeFutureRegions *bool
}

Information about the source of the data included in the resource data sync.

type ResourceDataSyncSourceWithState

type ResourceDataSyncSourceWithState struct {

	// The field name in SyncSource for the ResourceDataSyncAwsOrganizationsSource
	// type.
	AwsOrganizationsSource *ResourceDataSyncAwsOrganizationsSource

	// Whether to automatically synchronize and aggregate data from new AWS Regions
	// when those Regions come online.
	IncludeFutureRegions *bool

	// The SyncSource AWS Regions included in the resource data sync.
	SourceRegions []*string

	// The type of data source for the resource data sync. SourceType is either
	// AwsOrganizations (if an organization is present in AWS Organizations) or
	// singleAccountMultiRegions.
	SourceType *string

	// The data type name for including resource data sync state. There are four sync
	// states: OrganizationNotExists: Your organization doesn't exist. NoPermissions:
	// The system can't locate the service-linked role. This role is automatically
	// created when a user creates a resource data sync in Explorer.
	// InvalidOrganizationalUnit: You specified or selected an invalid unit in the
	// resource data sync configuration. TrustedAccessDisabled: You disabled Systems
	// Manager access in the organization in AWS Organizations.
	State *string
}

The data type name for including resource data sync state. There are four sync states: OrganizationNotExists (Your organization doesn't exist) NoPermissions (The system can't locate the service-linked role. This role is automatically created when a user creates a resource data sync in Explorer.) InvalidOrganizationalUnit (You specified or selected an invalid unit in the resource data sync configuration.) TrustedAccessDisabled (You disabled Systems Manager access in the organization in AWS Organizations.)

type ResourceInUseException

type ResourceInUseException struct {
	Message *string
}

Error returned if an attempt is made to delete a patch baseline that is registered for a patch group.

func (*ResourceInUseException) Error

func (e *ResourceInUseException) Error() string

func (*ResourceInUseException) ErrorCode

func (e *ResourceInUseException) ErrorCode() string

func (*ResourceInUseException) ErrorFault

func (e *ResourceInUseException) ErrorFault() smithy.ErrorFault

func (*ResourceInUseException) ErrorMessage

func (e *ResourceInUseException) ErrorMessage() string

type ResourceLimitExceededException

type ResourceLimitExceededException struct {
	Message *string
}

Error returned when the caller has exceeded the default resource quotas. For example, too many maintenance windows or patch baselines have been created. For information about resource quotas in Systems Manager, see Systems Manager service quotas (http://docs.aws.amazon.com/general/latest/gr/ssm.html#limits_ssm) in the AWS General Reference.

func (*ResourceLimitExceededException) Error

func (*ResourceLimitExceededException) ErrorCode

func (e *ResourceLimitExceededException) ErrorCode() string

func (*ResourceLimitExceededException) ErrorFault

func (*ResourceLimitExceededException) ErrorMessage

func (e *ResourceLimitExceededException) ErrorMessage() string

type ResourceType

type ResourceType string
const (
	ResourceTypeManaged_instance ResourceType = "ManagedInstance"
	ResourceTypeDocument         ResourceType = "Document"
	ResourceTypeEc2_instance     ResourceType = "EC2Instance"
)

Enum values for ResourceType

type ResourceTypeForTagging

type ResourceTypeForTagging string
const (
	ResourceTypeForTaggingDocument           ResourceTypeForTagging = "Document"
	ResourceTypeForTaggingManaged_instance   ResourceTypeForTagging = "ManagedInstance"
	ResourceTypeForTaggingMaintenance_window ResourceTypeForTagging = "MaintenanceWindow"
	ResourceTypeForTaggingParameter          ResourceTypeForTagging = "Parameter"
	ResourceTypeForTaggingPatch_baseline     ResourceTypeForTagging = "PatchBaseline"
	ResourceTypeForTaggingOps_item           ResourceTypeForTagging = "OpsItem"
)

Enum values for ResourceTypeForTagging

type ResultAttribute

type ResultAttribute struct {

	// Name of the inventory item type. Valid value: AWS:InstanceInformation. Default
	// Value: AWS:InstanceInformation.
	//
	// This member is required.
	TypeName *string
}

The inventory item result attribute.

type S3OutputLocation

type S3OutputLocation struct {

	// The name of the S3 bucket.
	OutputS3BucketName *string

	// The S3 bucket subfolder.
	OutputS3KeyPrefix *string

	// (Deprecated) You can no longer specify this parameter. The system ignores it.
	// Instead, Systems Manager automatically determines the Region of the S3 bucket.
	OutputS3Region *string
}

An S3 bucket where you want to store the results of this request.

type S3OutputUrl

type S3OutputUrl struct {

	// A URL for an S3 bucket where you want to store the results of this request.
	OutputUrl *string
}

A URL for the S3 bucket where you want to store the results of this request.

type ScheduledWindowExecution

type ScheduledWindowExecution struct {

	// The time, in ISO-8601 Extended format, that the maintenance window is scheduled
	// to be run.
	ExecutionTime *string

	// The name of the maintenance window to be run.
	Name *string

	// The ID of the maintenance window to be run.
	WindowId *string
}

Information about a scheduled execution for a maintenance window.

type ServiceSetting

type ServiceSetting struct {

	// The ARN of the service setting.
	ARN *string

	// The last time the service setting was modified.
	LastModifiedDate *time.Time

	// The ARN of the last modified user. This field is populated only if the setting
	// value was overwritten.
	LastModifiedUser *string

	// The ID of the service setting.
	SettingId *string

	// The value of the service setting.
	SettingValue *string

	// The status of the service setting. The value can be Default, Customized or
	// PendingUpdate.
	//
	//     * Default: The current setting uses a default value
	// provisioned by the AWS service team.
	//
	//     * Customized: The current setting use
	// a custom value specified by the customer.
	//
	//     * PendingUpdate: The current
	// setting uses a default or custom value, but a setting change request is pending
	// approval.
	Status *string
}

The service setting data structure. ServiceSetting is an account-level setting for an AWS service. This setting defines how a user interacts with or uses a service or a feature of a service. For example, if an AWS service charges money to the account based on feature or service usage, then the AWS service team might create a default setting of "false". This means the user can't use this feature unless they change the setting to "true" and intentionally opt in for a paid feature. Services map a SettingId object to a setting value. AWS services teams define the default value for a SettingId. You can't create a new SettingId, but you can overwrite the default value if you have the ssm:UpdateServiceSetting permission for the setting. Use the UpdateServiceSetting API action to change the default setting. Or, use the ResetServiceSetting to change the value back to the original value defined by the AWS service team.

type ServiceSettingNotFound

type ServiceSettingNotFound struct {
	Message *string
}

The specified service setting was not found. Either the service name or the setting has not been provisioned by the AWS service team.

func (*ServiceSettingNotFound) Error

func (e *ServiceSettingNotFound) Error() string

func (*ServiceSettingNotFound) ErrorCode

func (e *ServiceSettingNotFound) ErrorCode() string

func (*ServiceSettingNotFound) ErrorFault

func (e *ServiceSettingNotFound) ErrorFault() smithy.ErrorFault

func (*ServiceSettingNotFound) ErrorMessage

func (e *ServiceSettingNotFound) ErrorMessage() string

type Session

type Session struct {

	// Reserved for future use.
	Details *string

	// The name of the Session Manager SSM document used to define the parameters and
	// plugin settings for the session. For example, SSM-SessionManagerRunShell.
	DocumentName *string

	// The date and time, in ISO-8601 Extended format, when the session was terminated.
	EndDate *time.Time

	// Reserved for future use.
	OutputUrl *SessionManagerOutputUrl

	// The ID of the AWS user account that started the session.
	Owner *string

	// The ID of the session.
	SessionId *string

	// The date and time, in ISO-8601 Extended format, when the session began.
	StartDate *time.Time

	// The status of the session. For example, "Connected" or "Terminated".
	Status SessionStatus

	// The instance that the Session Manager session connected to.
	Target *string
}

Information about a Session Manager connection to an instance.

type SessionFilter

type SessionFilter struct {

	// The name of the filter.
	//
	// This member is required.
	Key SessionFilterKey

	// The filter value. Valid values for each filter key are as follows:
	//
	//     *
	// InvokedAfter: Specify a timestamp to limit your results. For example, specify
	// 2018-08-29T00:00:00Z to see sessions that started August 29, 2018, and later.
	//
	//
	// * InvokedBefore: Specify a timestamp to limit your results. For example, specify
	// 2018-08-29T00:00:00Z to see sessions that started before August 29, 2018.
	//
	//     *
	// Target: Specify an instance to which session connections have been made.
	//
	//     *
	// Owner: Specify an AWS user account to see a list of sessions started by that
	// user.
	//
	//     * Status: Specify a valid session status to see a list of all
	// sessions with that status. Status values you can specify include:
	//
	//         *
	// Connected
	//
	//         * Connecting
	//
	//         * Disconnected
	//
	//         * Terminated
	//
	//
	// * Terminating
	//
	//         * Failed
	//
	// This member is required.
	Value *string
}

Describes a filter for Session Manager information.

type SessionFilterKey

type SessionFilterKey string
const (
	SessionFilterKeyInvoked_after  SessionFilterKey = "InvokedAfter"
	SessionFilterKeyInvoked_before SessionFilterKey = "InvokedBefore"
	SessionFilterKeyTarget_id      SessionFilterKey = "Target"
	SessionFilterKeyOwner          SessionFilterKey = "Owner"
	SessionFilterKeyStatus         SessionFilterKey = "Status"
)

Enum values for SessionFilterKey

type SessionManagerOutputUrl

type SessionManagerOutputUrl struct {

	// Reserved for future use.
	CloudWatchOutputUrl *string

	// Reserved for future use.
	S3OutputUrl *string
}

Reserved for future use.

type SessionState

type SessionState string
const (
	SessionStateActive  SessionState = "Active"
	SessionStateHistory SessionState = "History"
)

Enum values for SessionState

type SessionStatus

type SessionStatus string
const (
	SessionStatusConnected    SessionStatus = "Connected"
	SessionStatusConnecting   SessionStatus = "Connecting"
	SessionStatusDisconnected SessionStatus = "Disconnected"
	SessionStatusTerminated   SessionStatus = "Terminated"
	SessionStatusTerminating  SessionStatus = "Terminating"
	SessionStatusFailed       SessionStatus = "Failed"
)

Enum values for SessionStatus

type SeveritySummary

type SeveritySummary struct {

	// The total number of resources or compliance items that have a severity level of
	// critical. Critical severity is determined by the organization that published the
	// compliance items.
	CriticalCount *int32

	// The total number of resources or compliance items that have a severity level of
	// high. High severity is determined by the organization that published the
	// compliance items.
	HighCount *int32

	// The total number of resources or compliance items that have a severity level of
	// informational. Informational severity is determined by the organization that
	// published the compliance items.
	InformationalCount *int32

	// The total number of resources or compliance items that have a severity level of
	// low. Low severity is determined by the organization that published the
	// compliance items.
	LowCount *int32

	// The total number of resources or compliance items that have a severity level of
	// medium. Medium severity is determined by the organization that published the
	// compliance items.
	MediumCount *int32

	// The total number of resources or compliance items that have a severity level of
	// unspecified. Unspecified severity is determined by the organization that
	// published the compliance items.
	UnspecifiedCount *int32
}

The number of managed instances found for each patch severity level defined in the request filter.

type SignalType

type SignalType string
const (
	SignalTypeApprove    SignalType = "Approve"
	SignalTypeReject     SignalType = "Reject"
	SignalTypeStart_step SignalType = "StartStep"
	SignalTypeStop_step  SignalType = "StopStep"
	SignalTypeResume     SignalType = "Resume"
)

Enum values for SignalType

type StatusUnchanged

type StatusUnchanged struct {
	Message *string
}

The updated status is the same as the current status.

func (*StatusUnchanged) Error

func (e *StatusUnchanged) Error() string

func (*StatusUnchanged) ErrorCode

func (e *StatusUnchanged) ErrorCode() string

func (*StatusUnchanged) ErrorFault

func (e *StatusUnchanged) ErrorFault() smithy.ErrorFault

func (*StatusUnchanged) ErrorMessage

func (e *StatusUnchanged) ErrorMessage() string

type StepExecution

type StepExecution struct {

	// The action this step performs. The action determines the behavior of the step.
	Action *string

	// 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

	// 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

	// Information about the Automation failure.
	FailureDetails *FailureDetails

	// If a step failed, this message explains why the execution failed.
	FailureMessage *string

	// Fully-resolved values passed into the step before execution.
	Inputs map[string]*string

	// The flag which can be used to help decide whether the failure of current step
	// leads to the Automation failure.
	IsCritical *bool

	// The flag which can be used to end automation no matter whether the step succeeds
	// or fails.
	IsEnd *bool

	// The maximum number of tries to run the action of the step. The default value is
	// 1.
	MaxAttempts *int32

	// The next step after the step succeeds.
	NextStep *string

	// The action to take if the step fails. The default value is Abort.
	OnFailure *string

	// Returned values from the execution of the step.
	Outputs map[string][]*string

	// A user-specified list of parameters to override when running a step.
	OverriddenParameters map[string][]*string

	// A message associated with the response code for an execution.
	Response *string

	// The response code returned by the execution of the step.
	ResponseCode *string

	// The unique ID of a step execution.
	StepExecutionId *string

	// The name of this execution step.
	StepName *string

	// The execution status for this step.
	StepStatus AutomationExecutionStatus

	// The combination of AWS Regions and accounts targeted by the current Automation
	// execution.
	TargetLocation *TargetLocation

	// The targets for the step execution.
	Targets []*Target

	// The timeout seconds of the step.
	TimeoutSeconds *int64

	// Strategies used when step fails, we support Continue and Abort. Abort will fail
	// the automation when the step fails. Continue will ignore the failure of current
	// step and allow automation to run the next step. With conditional branching, we
	// add step:stepName to support the automation to go to another specific step.
	ValidNextSteps []*string
}

Detailed information about an the execution state of an Automation step.

type StepExecutionFilter

type StepExecutionFilter struct {

	// One or more keys to limit the results. Valid filter keys include the following:
	// StepName, Action, StepExecutionId, StepExecutionStatus, StartTimeBefore,
	// StartTimeAfter.
	//
	// This member is required.
	Key StepExecutionFilterKey

	// The values of the filter key.
	//
	// This member is required.
	Values []*string
}

A filter to limit the amount of step execution information returned by the call.

type StepExecutionFilterKey

type StepExecutionFilterKey string
const (
	StepExecutionFilterKeyStart_time_before     StepExecutionFilterKey = "StartTimeBefore"
	StepExecutionFilterKeyStart_time_after      StepExecutionFilterKey = "StartTimeAfter"
	StepExecutionFilterKeyStep_execution_status StepExecutionFilterKey = "StepExecutionStatus"
	StepExecutionFilterKeyStep_execution_id     StepExecutionFilterKey = "StepExecutionId"
	StepExecutionFilterKeyStep_name             StepExecutionFilterKey = "StepName"
	StepExecutionFilterKeyAction                StepExecutionFilterKey = "Action"
)

Enum values for StepExecutionFilterKey

type StopType

type StopType string
const (
	StopTypeComplete StopType = "Complete"
	StopTypeCancel   StopType = "Cancel"
)

Enum values for StopType

type SubTypeCountLimitExceededException

type SubTypeCountLimitExceededException struct {
	Message *string
}

The sub-type count exceeded the limit for the inventory type.

func (*SubTypeCountLimitExceededException) Error

func (*SubTypeCountLimitExceededException) ErrorCode

func (*SubTypeCountLimitExceededException) ErrorFault

func (*SubTypeCountLimitExceededException) ErrorMessage

func (e *SubTypeCountLimitExceededException) ErrorMessage() string

type Tag

type Tag struct {

	// The name of the tag.
	//
	// This member is required.
	Key *string

	// The value of the tag.
	//
	// This member is required.
	Value *string
}

Metadata that you assign to your AWS resources. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment. In Systems Manager, you can apply tags to documents, managed instances, maintenance windows, Parameter Store parameters, and patch baselines.

type Target

type Target struct {

	// User-defined criteria for sending commands that target instances that meet the
	// criteria.
	Key *string

	// User-defined criteria that maps to Key. For example, if you specified
	// tag:ServerRole, you could specify value:WebServer to run a command on instances
	// that include EC2 tags of ServerRole,WebServer.
	Values []*string
}

An array of search criteria that targets instances using a Key,Value combination that you specify. Supported formats include the following.

*

Key=InstanceIds,Values=instance-id-1,instance-id-2,instance-id-3

*

Key=tag:my-tag-key,Values=my-tag-value-1,my-tag-value-2

*

Key=tag-key,Values=my-tag-key-1,my-tag-key-2

  • Run Command and Maintenance

window targets only: Key=resource-groups:Name,Values=resource-group-name

*

Maintenance window targets only: Key=resource-groups:ResourceTypeFilters,Values=resource-type-1,resource-type-2

* Automation targets only: Key=ResourceGroup;Values=resource-group-name

For example:

*

Key=InstanceIds,Values=i-02573cafcfEXAMPLE,i-0471e04240EXAMPLE,i-07782c72faEXAMPLE

* Key=tag:CostCenter,Values=CostCenter1,CostCenter2,CostCenter3

*

Key=tag-key,Values=Name,Instance-Type,CostCenter

  • Run Command and

Maintenance window targets only: Key=resource-groups:Name,Values=ProductionResourceGroup This example demonstrates how to target all resources in the resource group ProductionResourceGroup in your maintenance window.

  • Maintenance window

targets only: Key=resource-groups:ResourceTypeFilters,Values=AWS::EC2::INSTANCE,AWS::EC2::VPC This example demonstrates how to target only EC2 instances and VPCs in your maintenance window.

  • Automation targets only:

Key=ResourceGroup,Values=MyResourceGroup

  • State Manager association

targets only: Key=InstanceIds,Values=* This example demonstrates how to target all managed instances in the AWS Region where the association was created.

For more information about how to send commands that target instances using Key,Value parameters, see Targeting multiple instances (https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html#send-commands-targeting) in the AWS Systems Manager User Guide.

type TargetInUseException

type TargetInUseException struct {
	Message *string
}

You specified the Safe option for the DeregisterTargetFromMaintenanceWindow operation, but the target is still referenced in a task.

func (*TargetInUseException) Error

func (e *TargetInUseException) Error() string

func (*TargetInUseException) ErrorCode

func (e *TargetInUseException) ErrorCode() string

func (*TargetInUseException) ErrorFault

func (e *TargetInUseException) ErrorFault() smithy.ErrorFault

func (*TargetInUseException) ErrorMessage

func (e *TargetInUseException) ErrorMessage() string

type TargetLocation

type TargetLocation struct {

	// The AWS accounts targeted by the current Automation execution.
	Accounts []*string

	// The Automation execution role used by the currently running Automation.
	ExecutionRoleName *string

	// The AWS Regions targeted by the current Automation execution.
	Regions []*string

	// The maximum number of AWS accounts and AWS regions allowed to run the Automation
	// concurrently
	TargetLocationMaxConcurrency *string

	// The maximum number of errors allowed before the system stops queueing additional
	// Automation executions for the currently running Automation.
	TargetLocationMaxErrors *string
}

The combination of AWS Regions and accounts targeted by the current Automation execution.

type TargetNotConnected

type TargetNotConnected struct {
	Message *string
}

The specified target instance for the session is not fully configured for use with Session Manager. For more information, see Getting started with Session Manager (https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-getting-started.html) in the AWS Systems Manager User Guide.

func (*TargetNotConnected) Error

func (e *TargetNotConnected) Error() string

func (*TargetNotConnected) ErrorCode

func (e *TargetNotConnected) ErrorCode() string

func (*TargetNotConnected) ErrorFault

func (e *TargetNotConnected) ErrorFault() smithy.ErrorFault

func (*TargetNotConnected) ErrorMessage

func (e *TargetNotConnected) ErrorMessage() string

type TooManyTagsError

type TooManyTagsError struct {
	Message *string
}

The Targets parameter includes too many tags. Remove one or more tags and try the command again.

func (*TooManyTagsError) Error

func (e *TooManyTagsError) Error() string

func (*TooManyTagsError) ErrorCode

func (e *TooManyTagsError) ErrorCode() string

func (*TooManyTagsError) ErrorFault

func (e *TooManyTagsError) ErrorFault() smithy.ErrorFault

func (*TooManyTagsError) ErrorMessage

func (e *TooManyTagsError) ErrorMessage() string

type TooManyUpdates

type TooManyUpdates struct {
	Message *string
}

There are concurrent updates for a resource that supports one update at a time.

func (*TooManyUpdates) Error

func (e *TooManyUpdates) Error() string

func (*TooManyUpdates) ErrorCode

func (e *TooManyUpdates) ErrorCode() string

func (*TooManyUpdates) ErrorFault

func (e *TooManyUpdates) ErrorFault() smithy.ErrorFault

func (*TooManyUpdates) ErrorMessage

func (e *TooManyUpdates) ErrorMessage() string

type TotalSizeLimitExceededException

type TotalSizeLimitExceededException struct {
	Message *string
}

The size of inventory data has exceeded the total size limit for the resource.

func (*TotalSizeLimitExceededException) Error

func (*TotalSizeLimitExceededException) ErrorCode

func (e *TotalSizeLimitExceededException) ErrorCode() string

func (*TotalSizeLimitExceededException) ErrorFault

func (*TotalSizeLimitExceededException) ErrorMessage

func (e *TotalSizeLimitExceededException) ErrorMessage() string

type UnsupportedCalendarException

type UnsupportedCalendarException struct {
	Message *string
}

The calendar entry contained in the specified Systems Manager document is not supported.

func (*UnsupportedCalendarException) Error

func (*UnsupportedCalendarException) ErrorCode

func (e *UnsupportedCalendarException) ErrorCode() string

func (*UnsupportedCalendarException) ErrorFault

func (*UnsupportedCalendarException) ErrorMessage

func (e *UnsupportedCalendarException) ErrorMessage() string

type UnsupportedFeatureRequiredException

type UnsupportedFeatureRequiredException struct {
	Message *string
}

Microsoft application patching is only available on EC2 instances and advanced instances. To patch Microsoft applications on on-premises servers and VMs, you must enable advanced instances. For more information, see Using the advanced-instances tier (https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-managedinstances-advanced.html) in the AWS Systems Manager User Guide.

func (*UnsupportedFeatureRequiredException) Error

func (*UnsupportedFeatureRequiredException) ErrorCode

func (*UnsupportedFeatureRequiredException) ErrorFault

func (*UnsupportedFeatureRequiredException) ErrorMessage

func (e *UnsupportedFeatureRequiredException) ErrorMessage() string

type UnsupportedInventoryItemContextException

type UnsupportedInventoryItemContextException struct {
	Message *string

	TypeName *string
}

The Context attribute that you specified for the InventoryItem is not allowed for this inventory type. You can only use the Context attribute with inventory types like AWS:ComplianceItem.

func (*UnsupportedInventoryItemContextException) Error

func (*UnsupportedInventoryItemContextException) ErrorCode

func (*UnsupportedInventoryItemContextException) ErrorFault

func (*UnsupportedInventoryItemContextException) ErrorMessage

type UnsupportedInventorySchemaVersionException

type UnsupportedInventorySchemaVersionException struct {
	Message *string
}

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.

func (*UnsupportedInventorySchemaVersionException) Error

func (*UnsupportedInventorySchemaVersionException) ErrorCode

func (*UnsupportedInventorySchemaVersionException) ErrorFault

func (*UnsupportedInventorySchemaVersionException) ErrorMessage

type UnsupportedOperatingSystem

type UnsupportedOperatingSystem struct {
	Message *string
}

The operating systems you specified is not supported, or the operation is not supported for the operating system. Valid operating systems include: Windows, AmazonLinux, RedhatEnterpriseLinux, and Ubuntu.

func (*UnsupportedOperatingSystem) Error

func (*UnsupportedOperatingSystem) ErrorCode

func (e *UnsupportedOperatingSystem) ErrorCode() string

func (*UnsupportedOperatingSystem) ErrorFault

func (*UnsupportedOperatingSystem) ErrorMessage

func (e *UnsupportedOperatingSystem) ErrorMessage() string

type UnsupportedParameterType

type UnsupportedParameterType struct {
	Message *string
}

The parameter type is not supported.

func (*UnsupportedParameterType) Error

func (e *UnsupportedParameterType) Error() string

func (*UnsupportedParameterType) ErrorCode

func (e *UnsupportedParameterType) ErrorCode() string

func (*UnsupportedParameterType) ErrorFault

func (e *UnsupportedParameterType) ErrorFault() smithy.ErrorFault

func (*UnsupportedParameterType) ErrorMessage

func (e *UnsupportedParameterType) ErrorMessage() string

type UnsupportedPlatformType

type UnsupportedPlatformType struct {
	Message *string
}

The document does not support the platform type of the given instance ID(s). For example, you sent an document for a Windows instance to a Linux instance.

func (*UnsupportedPlatformType) Error

func (e *UnsupportedPlatformType) Error() string

func (*UnsupportedPlatformType) ErrorCode

func (e *UnsupportedPlatformType) ErrorCode() string

func (*UnsupportedPlatformType) ErrorFault

func (e *UnsupportedPlatformType) ErrorFault() smithy.ErrorFault

func (*UnsupportedPlatformType) ErrorMessage

func (e *UnsupportedPlatformType) ErrorMessage() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL