Documentation ¶
Index ¶
- type ConflictException
- type InternalServiceFault
- type InvalidParameterException
- type LinkConfiguration
- type ListAttachedLinksItem
- type ListLinksItem
- type ListSinksItem
- type LogGroupConfiguration
- type MetricConfiguration
- type MissingRequiredParameterException
- type ResourceNotFoundException
- type ResourceType
- type ServiceQuotaExceededException
- type TooManyTagsException
- type ValidationException
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConflictException ¶
type ConflictException struct { Message *string ErrorCodeOverride *string AmznErrorType *string // contains filtered or unexported fields }
A resource was in an inconsistent state during an update or a deletion.
func (*ConflictException) Error ¶
func (e *ConflictException) Error() string
func (*ConflictException) ErrorCode ¶
func (e *ConflictException) ErrorCode() string
func (*ConflictException) ErrorFault ¶
func (e *ConflictException) ErrorFault() smithy.ErrorFault
func (*ConflictException) ErrorMessage ¶
func (e *ConflictException) ErrorMessage() string
type InternalServiceFault ¶
type InternalServiceFault struct { Message *string ErrorCodeOverride *string AmznErrorType *string // contains filtered or unexported fields }
Unexpected error while processing the request. Retry the request.
func (*InternalServiceFault) Error ¶
func (e *InternalServiceFault) Error() string
func (*InternalServiceFault) ErrorCode ¶
func (e *InternalServiceFault) ErrorCode() string
func (*InternalServiceFault) ErrorFault ¶
func (e *InternalServiceFault) ErrorFault() smithy.ErrorFault
func (*InternalServiceFault) ErrorMessage ¶
func (e *InternalServiceFault) ErrorMessage() string
type InvalidParameterException ¶
type InvalidParameterException struct { Message *string ErrorCodeOverride *string AmznErrorType *string // contains filtered or unexported fields }
A parameter is specified incorrectly.
func (*InvalidParameterException) Error ¶
func (e *InvalidParameterException) Error() string
func (*InvalidParameterException) ErrorCode ¶
func (e *InvalidParameterException) ErrorCode() string
func (*InvalidParameterException) ErrorFault ¶
func (e *InvalidParameterException) ErrorFault() smithy.ErrorFault
func (*InvalidParameterException) ErrorMessage ¶
func (e *InvalidParameterException) ErrorMessage() string
type LinkConfiguration ¶ added in v1.11.0
type LinkConfiguration struct { // Use this structure to filter which log groups are to send log events from the // source account to the monitoring account. LogGroupConfiguration *LogGroupConfiguration // Use this structure to filter which metric namespaces are to be shared from the // source account to the monitoring account. MetricConfiguration *MetricConfiguration // contains filtered or unexported fields }
Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.
type ListAttachedLinksItem ¶
type ListAttachedLinksItem struct { // The label that was assigned to this link at creation, with the variables // resolved to their actual values. Label *string // The ARN of the link. LinkArn *string // The resource types supported by this link. ResourceTypes []string // contains filtered or unexported fields }
A structure that contains information about one link attached to this monitoring account sink.
type ListLinksItem ¶
type ListLinksItem struct { // The ARN of the link. Arn *string // The random ID string that Amazon Web Services generated as part of the link ARN. Id *string // The label that was assigned to this link at creation, with the variables // resolved to their actual values. Label *string // The resource types supported by this link. ResourceTypes []string // The ARN of the sink that this link is attached to. SinkArn *string // contains filtered or unexported fields }
A structure that contains information about one of this source account's links to a monitoring account.
type ListSinksItem ¶
type ListSinksItem struct { // The ARN of the sink. Arn *string // The random ID string that Amazon Web Services generated as part of the sink ARN. Id *string // The name of the sink. Name *string // contains filtered or unexported fields }
A structure that contains information about one of this monitoring account's sinks.
type LogGroupConfiguration ¶ added in v1.11.0
type LogGroupConfiguration struct { // Use this field to specify which log groups are to share their log events with // the monitoring account. Use the term LogGroupName and one or more of the // following operands. Use single quotation marks (') around log group names. The // matching of log group names is case sensitive. Each filter has a limit of five // conditional operands. Conditional operands are AND and OR . // // - = and != // // - AND // // - OR // // - LIKE and NOT LIKE . These can be used only as prefix searches. Include a % // at the end of the string that you want to search for and include. // // - IN and NOT IN , using parentheses ( ) // // Examples: // // - LogGroupName IN ('This-Log-Group', 'Other-Log-Group') includes only the log // groups with names This-Log-Group and Other-Log-Group . // // - LogGroupName NOT IN ('Private-Log-Group', 'Private-Log-Group-2') includes // all log groups except the log groups with names Private-Log-Group and // Private-Log-Group-2 . // // - LogGroupName LIKE 'aws/lambda/%' OR LogGroupName LIKE 'AWSLogs%' includes // all log groups that have names that start with aws/lambda/ or AWSLogs . // // If you are updating a link that uses filters, you can specify * as the only // value for the filter parameter to delete the filter and share all log groups // with the monitoring account. // // This member is required. Filter *string // contains filtered or unexported fields }
This structure contains the Filter parameter which you can use to specify which log groups are to share log events from this source account to the monitoring account.
type MetricConfiguration ¶ added in v1.11.0
type MetricConfiguration struct { // Use this field to specify which metrics are to be shared with the monitoring // account. Use the term Namespace and one or more of the following operands. Use // single quotation marks (') around namespace names. The matching of namespace // names is case sensitive. Each filter has a limit of five conditional operands. // Conditional operands are AND and OR . // // - = and != // // - AND // // - OR // // - LIKE and NOT LIKE . These can be used only as prefix searches. Include a % // at the end of the string that you want to search for and include. // // - IN and NOT IN , using parentheses ( ) // // Examples: // // - Namespace NOT LIKE 'AWS/%' includes only namespaces that don't start with // AWS/ , such as custom namespaces. // // - Namespace IN ('AWS/EC2', 'AWS/ELB', 'AWS/S3') includes only the metrics in // the EC2, Elastic Load Balancing, and Amazon S3 namespaces. // // - Namespace = 'AWS/EC2' OR Namespace NOT LIKE 'AWS/%' includes only the EC2 // namespace and your custom namespaces. // // If you are updating a link that uses filters, you can specify * as the only // value for the filter parameter to delete the filter and share all metric // namespaces with the monitoring account. // // This member is required. Filter *string // contains filtered or unexported fields }
This structure contains the Filter parameter which you can use to specify which metric namespaces are to be shared from this source account to the monitoring account.
type MissingRequiredParameterException ¶
type MissingRequiredParameterException struct { Message *string ErrorCodeOverride *string AmznErrorType *string // contains filtered or unexported fields }
A required parameter is missing from the request.
func (*MissingRequiredParameterException) Error ¶
func (e *MissingRequiredParameterException) Error() string
func (*MissingRequiredParameterException) ErrorCode ¶
func (e *MissingRequiredParameterException) ErrorCode() string
func (*MissingRequiredParameterException) ErrorFault ¶
func (e *MissingRequiredParameterException) ErrorFault() smithy.ErrorFault
func (*MissingRequiredParameterException) ErrorMessage ¶
func (e *MissingRequiredParameterException) ErrorMessage() string
type ResourceNotFoundException ¶
type ResourceNotFoundException struct { Message *string ErrorCodeOverride *string AmznErrorType *string // contains filtered or unexported fields }
The request references a resource that does not exist.
func (*ResourceNotFoundException) Error ¶
func (e *ResourceNotFoundException) Error() string
func (*ResourceNotFoundException) ErrorCode ¶
func (e *ResourceNotFoundException) ErrorCode() string
func (*ResourceNotFoundException) ErrorFault ¶
func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
func (*ResourceNotFoundException) ErrorMessage ¶
func (e *ResourceNotFoundException) ErrorMessage() string
type ResourceType ¶
type ResourceType string
const ( ResourceTypeAwsCloudwatchMetric ResourceType = "AWS::CloudWatch::Metric" ResourceTypeAwsLogsLoggroup ResourceType = "AWS::Logs::LogGroup" ResourceTypeAwsXrayTrace ResourceType = "AWS::XRay::Trace" ResourceTypeAwsApplicationinsightsApplication ResourceType = "AWS::ApplicationInsights::Application" ResourceTypeAwsInternetmonitorMonitor ResourceType = "AWS::InternetMonitor::Monitor" )
Enum values for ResourceType
func (ResourceType) Values ¶
func (ResourceType) Values() []ResourceType
Values returns all known values for ResourceType. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type ServiceQuotaExceededException ¶
type ServiceQuotaExceededException struct { Message *string ErrorCodeOverride *string AmznErrorType *string // contains filtered or unexported fields }
The request would cause a service quota to be exceeded.
func (*ServiceQuotaExceededException) Error ¶
func (e *ServiceQuotaExceededException) Error() string
func (*ServiceQuotaExceededException) ErrorCode ¶
func (e *ServiceQuotaExceededException) ErrorCode() string
func (*ServiceQuotaExceededException) ErrorFault ¶
func (e *ServiceQuotaExceededException) ErrorFault() smithy.ErrorFault
func (*ServiceQuotaExceededException) ErrorMessage ¶
func (e *ServiceQuotaExceededException) ErrorMessage() string
type TooManyTagsException ¶
type TooManyTagsException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
A resource can have no more than 50 tags.
func (*TooManyTagsException) Error ¶
func (e *TooManyTagsException) Error() string
func (*TooManyTagsException) ErrorCode ¶
func (e *TooManyTagsException) ErrorCode() string
func (*TooManyTagsException) ErrorFault ¶
func (e *TooManyTagsException) ErrorFault() smithy.ErrorFault
func (*TooManyTagsException) ErrorMessage ¶
func (e *TooManyTagsException) ErrorMessage() string
type ValidationException ¶
type ValidationException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The value of a parameter in the request caused an error.
func (*ValidationException) Error ¶
func (e *ValidationException) Error() string
func (*ValidationException) ErrorCode ¶
func (e *ValidationException) ErrorCode() string
func (*ValidationException) ErrorFault ¶
func (e *ValidationException) ErrorFault() smithy.ErrorFault
func (*ValidationException) ErrorMessage ¶
func (e *ValidationException) ErrorMessage() string