configservice

package
v1.1.31 Latest Latest
Warning

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

Go to latest
Published: May 26, 2016 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

Package configservice provides a client for AWS Config.

Index

Examples

Constants

View Source
const (
	// @enum ChronologicalOrder
	ChronologicalOrderReverse = "Reverse"
	// @enum ChronologicalOrder
	ChronologicalOrderForward = "Forward"
)
View Source
const (
	// @enum ComplianceType
	ComplianceTypeCompliant = "COMPLIANT"
	// @enum ComplianceType
	ComplianceTypeNonCompliant = "NON_COMPLIANT"
	// @enum ComplianceType
	ComplianceTypeNotApplicable = "NOT_APPLICABLE"
	// @enum ComplianceType
	ComplianceTypeInsufficientData = "INSUFFICIENT_DATA"
)
View Source
const (
	// @enum ConfigRuleState
	ConfigRuleStateActive = "ACTIVE"
	// @enum ConfigRuleState
	ConfigRuleStateDeleting = "DELETING"
)
View Source
const (
	// @enum ConfigurationItemStatus
	ConfigurationItemStatusOk = "Ok"
	// @enum ConfigurationItemStatus
	ConfigurationItemStatusFailed = "Failed"
	// @enum ConfigurationItemStatus
	ConfigurationItemStatusDiscovered = "Discovered"
	// @enum ConfigurationItemStatus
	ConfigurationItemStatusDeleted = "Deleted"
)
View Source
const (
	// @enum DeliveryStatus
	DeliveryStatusSuccess = "Success"
	// @enum DeliveryStatus
	DeliveryStatusFailure = "Failure"
	// @enum DeliveryStatus
	DeliveryStatusNotApplicable = "Not_Applicable"
)
View Source
const (
	// @enum MaximumExecutionFrequency
	MaximumExecutionFrequencyOneHour = "One_Hour"
	// @enum MaximumExecutionFrequency
	MaximumExecutionFrequencyThreeHours = "Three_Hours"
	// @enum MaximumExecutionFrequency
	MaximumExecutionFrequencySixHours = "Six_Hours"
	// @enum MaximumExecutionFrequency
	MaximumExecutionFrequencyTwelveHours = "Twelve_Hours"
	// @enum MaximumExecutionFrequency
	MaximumExecutionFrequencyTwentyFourHours = "TwentyFour_Hours"
)
View Source
const (
	// @enum MessageType
	MessageTypeConfigurationItemChangeNotification = "ConfigurationItemChangeNotification"
	// @enum MessageType
	MessageTypeConfigurationSnapshotDeliveryCompleted = "ConfigurationSnapshotDeliveryCompleted"
)
View Source
const (
	// @enum Owner
	OwnerCustomLambda = "CUSTOM_LAMBDA"
	// @enum Owner
	OwnerAws = "AWS"
)
View Source
const (
	// @enum RecorderStatus
	RecorderStatusPending = "Pending"
	// @enum RecorderStatus
	RecorderStatusSuccess = "Success"
	// @enum RecorderStatus
	RecorderStatusFailure = "Failure"
)
View Source
const (
	// @enum ResourceType
	ResourceTypeAwsEc2CustomerGateway = "AWS::EC2::CustomerGateway"
	// @enum ResourceType
	ResourceTypeAwsEc2Eip = "AWS::EC2::EIP"
	// @enum ResourceType
	ResourceTypeAwsEc2Host = "AWS::EC2::Host"
	// @enum ResourceType
	ResourceTypeAwsEc2Instance = "AWS::EC2::Instance"
	// @enum ResourceType
	ResourceTypeAwsEc2InternetGateway = "AWS::EC2::InternetGateway"
	// @enum ResourceType
	ResourceTypeAwsEc2NetworkAcl = "AWS::EC2::NetworkAcl"
	// @enum ResourceType
	ResourceTypeAwsEc2NetworkInterface = "AWS::EC2::NetworkInterface"
	// @enum ResourceType
	ResourceTypeAwsEc2RouteTable = "AWS::EC2::RouteTable"
	// @enum ResourceType
	ResourceTypeAwsEc2SecurityGroup = "AWS::EC2::SecurityGroup"
	// @enum ResourceType
	ResourceTypeAwsEc2Subnet = "AWS::EC2::Subnet"
	// @enum ResourceType
	ResourceTypeAwsCloudTrailTrail = "AWS::CloudTrail::Trail"
	// @enum ResourceType
	ResourceTypeAwsEc2Volume = "AWS::EC2::Volume"
	// @enum ResourceType
	ResourceTypeAwsEc2Vpc = "AWS::EC2::VPC"
	// @enum ResourceType
	ResourceTypeAwsEc2Vpnconnection = "AWS::EC2::VPNConnection"
	// @enum ResourceType
	ResourceTypeAwsEc2Vpngateway = "AWS::EC2::VPNGateway"
	// @enum ResourceType
	ResourceTypeAwsIamGroup = "AWS::IAM::Group"
	// @enum ResourceType
	ResourceTypeAwsIamPolicy = "AWS::IAM::Policy"
	// @enum ResourceType
	ResourceTypeAwsIamRole = "AWS::IAM::Role"
	// @enum ResourceType
	ResourceTypeAwsIamUser = "AWS::IAM::User"
)
View Source
const (
	// @enum EventSource
	EventSourceAwsConfig = "aws.config"
)
View Source
const ServiceName = "config"

A ServiceName is the name of the service the client will make API calls to.

Variables

This section is empty.

Functions

This section is empty.

Types

type Compliance added in v0.9.13

type Compliance struct {

	// The number of AWS resources or AWS Config rules that cause a result of NON_COMPLIANT,
	// up to a maximum number.
	ComplianceContributorCount *ComplianceContributorCount `type:"structure"`

	// Indicates whether an AWS resource or AWS Config rule is compliant.
	//
	// A resource is compliant if it complies with all of the AWS Config rules
	// that evaluate it, and it is noncompliant if it does not comply with one or
	// more of these rules.
	//
	// A rule is compliant if all of the resources that the rule evaluates comply
	// with it, and it is noncompliant if any of these resources do not comply.
	//
	// AWS Config returns the INSUFFICIENT_DATA value when no evaluation results
	// are available for the AWS resource or Config rule.
	//
	// For the Compliance data type, AWS Config supports only COMPLIANT, NON_COMPLIANT,
	// and INSUFFICIENT_DATA values. AWS Config does not support the NOT_APPLICABLE
	// value for the Compliance data type.
	ComplianceType *string `type:"string" enum:"ComplianceType"`
	// contains filtered or unexported fields
}

Indicates whether an AWS resource or AWS Config rule is compliant and provides the number of contributors that affect the compliance.

func (Compliance) GoString added in v0.9.13

func (s Compliance) GoString() string

GoString returns the string representation

func (Compliance) String added in v0.9.13

func (s Compliance) String() string

String returns the string representation

type ComplianceByConfigRule added in v0.9.13

type ComplianceByConfigRule struct {

	// Indicates whether the AWS Config rule is compliant.
	Compliance *Compliance `type:"structure"`

	// The name of the AWS Config rule.
	ConfigRuleName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Indicates whether an AWS Config rule is compliant. A rule is compliant if all of the resources that the rule evaluated comply with it, and it is noncompliant if any of these resources do not comply.

func (ComplianceByConfigRule) GoString added in v0.9.13

func (s ComplianceByConfigRule) GoString() string

GoString returns the string representation

func (ComplianceByConfigRule) String added in v0.9.13

func (s ComplianceByConfigRule) String() string

String returns the string representation

type ComplianceByResource added in v0.9.13

type ComplianceByResource struct {

	// Indicates whether the AWS resource complies with all of the AWS Config rules
	// that evaluated it.
	Compliance *Compliance `type:"structure"`

	// The ID of the AWS resource that was evaluated.
	ResourceId *string `min:"1" type:"string"`

	// The type of the AWS resource that was evaluated.
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Indicates whether an AWS resource that is evaluated according to one or more AWS Config rules is compliant. A resource is compliant if it complies with all of the rules that evaluate it, and it is noncompliant if it does not comply with one or more of these rules.

func (ComplianceByResource) GoString added in v0.9.13

func (s ComplianceByResource) GoString() string

GoString returns the string representation

func (ComplianceByResource) String added in v0.9.13

func (s ComplianceByResource) String() string

String returns the string representation

type ComplianceContributorCount added in v0.9.13

type ComplianceContributorCount struct {

	// Indicates whether the maximum count is reached.
	CapExceeded *bool `type:"boolean"`

	// The number of AWS resources or AWS Config rules responsible for the current
	// compliance of the item.
	CappedCount *int64 `type:"integer"`
	// contains filtered or unexported fields
}

The number of AWS resources or AWS Config rules responsible for the current compliance of the item, up to a maximum number.

func (ComplianceContributorCount) GoString added in v0.9.13

func (s ComplianceContributorCount) GoString() string

GoString returns the string representation

func (ComplianceContributorCount) String added in v0.9.13

String returns the string representation

type ComplianceSummary added in v0.9.13

type ComplianceSummary struct {

	// The time that AWS Config created the compliance summary.
	ComplianceSummaryTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"`

	// The number of AWS Config rules or AWS resources that are compliant, up to
	// a maximum of 25 for rules and 100 for resources.
	CompliantResourceCount *ComplianceContributorCount `type:"structure"`

	// The number of AWS Config rules or AWS resources that are noncompliant, up
	// to a maximum of 25 for rules and 100 for resources.
	NonCompliantResourceCount *ComplianceContributorCount `type:"structure"`
	// contains filtered or unexported fields
}

The number of AWS Config rules or AWS resources that are compliant and noncompliant, up to a maximum.

func (ComplianceSummary) GoString added in v0.9.13

func (s ComplianceSummary) GoString() string

GoString returns the string representation

func (ComplianceSummary) String added in v0.9.13

func (s ComplianceSummary) String() string

String returns the string representation

type ComplianceSummaryByResourceType added in v0.9.13

type ComplianceSummaryByResourceType struct {

	// The number of AWS resources that are compliant or noncompliant, up to a maximum
	// of 100 for each compliance.
	ComplianceSummary *ComplianceSummary `type:"structure"`

	// The type of AWS resource.
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

The number of AWS resources of a specific type that are compliant or noncompliant, up to a maximum of 100 for each compliance.

func (ComplianceSummaryByResourceType) GoString added in v0.9.13

GoString returns the string representation

func (ComplianceSummaryByResourceType) String added in v0.9.13

String returns the string representation

type ConfigExportDeliveryInfo

type ConfigExportDeliveryInfo struct {

	// The time of the last attempted delivery.
	LastAttemptTime *time.Time `locationName:"lastAttemptTime" type:"timestamp" timestampFormat:"unix"`

	// The error code from the last attempted delivery.
	LastErrorCode *string `locationName:"lastErrorCode" type:"string"`

	// The error message from the last attempted delivery.
	LastErrorMessage *string `locationName:"lastErrorMessage" type:"string"`

	// Status of the last attempted delivery.
	LastStatus *string `locationName:"lastStatus" type:"string" enum:"DeliveryStatus"`

	// The time of the last successful delivery.
	LastSuccessfulTime *time.Time `locationName:"lastSuccessfulTime" type:"timestamp" timestampFormat:"unix"`

	// The time that the next delivery occurs.
	NextDeliveryTime *time.Time `locationName:"nextDeliveryTime" type:"timestamp" timestampFormat:"unix"`
	// contains filtered or unexported fields
}

A list that contains the status of the delivery of either the snapshot or the configuration history to the specified Amazon S3 bucket.

func (ConfigExportDeliveryInfo) GoString added in v0.6.5

func (s ConfigExportDeliveryInfo) GoString() string

GoString returns the string representation

func (ConfigExportDeliveryInfo) String added in v0.6.5

func (s ConfigExportDeliveryInfo) String() string

String returns the string representation

type ConfigRule added in v0.9.13

type ConfigRule struct {

	// The Amazon Resource Name (ARN) of the AWS Config rule.
	ConfigRuleArn *string `type:"string"`

	// The ID of the AWS Config rule.
	ConfigRuleId *string `type:"string"`

	// The name that you assign to the AWS Config rule. The name is required if
	// you are adding a new rule.
	ConfigRuleName *string `min:"1" type:"string"`

	// Indicates whether the AWS Config rule is active or currently being deleted
	// by AWS Config.
	//
	// AWS Config sets the state of a rule to DELETING temporarily after you use
	// the DeleteConfigRule request to delete the rule. After AWS Config finishes
	// deleting a rule, the rule and all of its evaluations are erased and no longer
	// available.
	//
	// You cannot add a rule to AWS Config that has the state set to DELETING.
	// If you want to delete a rule, you must use the DeleteConfigRule request.
	ConfigRuleState *string `type:"string" enum:"ConfigRuleState"`

	// The description that you provide for the AWS Config rule.
	Description *string `type:"string"`

	// A string in JSON format that is passed to the AWS Config rule Lambda function.
	InputParameters *string `min:"1" type:"string"`

	// The maximum frequency at which the AWS Config rule runs evaluations.
	//
	// If your rule is periodic, meaning it runs an evaluation when AWS Config
	// delivers a configuration snapshot, then it cannot run evaluations more frequently
	// than AWS Config delivers the snapshots. For periodic rules, set the value
	// of the MaximumExecutionFrequency key to be equal to or greater than the value
	// of the deliveryFrequency key, which is part of ConfigSnapshotDeliveryProperties.
	// To update the frequency with which AWS Config delivers your snapshots, use
	// the PutDeliveryChannel action.
	MaximumExecutionFrequency *string `type:"string" enum:"MaximumExecutionFrequency"`

	// Defines which resources can trigger an evaluation for the rule. The scope
	// can include one or more resource types, a combination of one resource type
	// and one resource ID, or a combination of a tag key and value. Specify a scope
	// to constrain the resources that can trigger an evaluation for the rule. If
	// you do not specify a scope, evaluations are triggered when any resource in
	// the recording group changes.
	Scope *Scope `type:"structure"`

	// Provides the rule owner (AWS or customer), the rule identifier, and the events
	// that cause the function to evaluate your AWS resources.
	Source *Source `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An AWS Lambda function that evaluates configuration items to assess whether your AWS resources comply with your desired configurations. This function can run when AWS Config detects a configuration change to an AWS resource, or when it delivers a configuration snapshot of the resources in the account.

For more information about developing and using AWS Config rules, see Evaluating AWS Resource Configurations with AWS Config (http://docs.aws.amazon.com/config/latest/developerguide/evaluate-config.html) in the AWS Config Developer Guide.

func (ConfigRule) GoString added in v0.9.13

func (s ConfigRule) GoString() string

GoString returns the string representation

func (ConfigRule) String added in v0.9.13

func (s ConfigRule) String() string

String returns the string representation

func (*ConfigRule) Validate added in v1.1.21

func (s *ConfigRule) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ConfigRuleEvaluationStatus added in v0.9.13

type ConfigRuleEvaluationStatus struct {

	// The Amazon Resource Name (ARN) of the AWS Config rule.
	ConfigRuleArn *string `type:"string"`

	// The ID of the AWS Config rule.
	ConfigRuleId *string `type:"string"`

	// The name of the AWS Config rule.
	ConfigRuleName *string `min:"1" type:"string"`

	// The time that you first activated the AWS Config rule.
	FirstActivatedTime *time.Time `type:"timestamp" timestampFormat:"unix"`

	// Indicates whether AWS Config has evaluated your resources against the rule
	// at least once.
	//
	//  true - AWS Config has evaluated your AWS resources against the rule at
	// least once. false - AWS Config has not once finished evaluating your AWS
	// resources against the rule.
	FirstEvaluationStarted *bool `type:"boolean"`

	// The error code that AWS Config returned when the rule last failed.
	LastErrorCode *string `type:"string"`

	// The error message that AWS Config returned when the rule last failed.
	LastErrorMessage *string `type:"string"`

	// The time that AWS Config last failed to evaluate your AWS resources against
	// the rule.
	LastFailedEvaluationTime *time.Time `type:"timestamp" timestampFormat:"unix"`

	// The time that AWS Config last failed to invoke the AWS Config rule to evaluate
	// your AWS resources.
	LastFailedInvocationTime *time.Time `type:"timestamp" timestampFormat:"unix"`

	// The time that AWS Config last successfully evaluated your AWS resources against
	// the rule.
	LastSuccessfulEvaluationTime *time.Time `type:"timestamp" timestampFormat:"unix"`

	// The time that AWS Config last successfully invoked the AWS Config rule to
	// evaluate your AWS resources.
	LastSuccessfulInvocationTime *time.Time `type:"timestamp" timestampFormat:"unix"`
	// contains filtered or unexported fields
}

Status information for your AWS managed Config rules. The status includes information such as the last time the rule ran, the last time it failed, and the related error for the last failure.

This action does not return status information about customer managed Config rules.

func (ConfigRuleEvaluationStatus) GoString added in v0.9.13

func (s ConfigRuleEvaluationStatus) GoString() string

GoString returns the string representation

func (ConfigRuleEvaluationStatus) String added in v0.9.13

String returns the string representation

type ConfigService

type ConfigService struct {
	*client.Client
}

AWS Config provides a way to keep track of the configurations of all the AWS resources associated with your AWS account. You can use AWS Config to get the current and historical configurations of each AWS resource and also to get information about the relationship between the resources. An AWS resource can be an Amazon Compute Cloud (Amazon EC2) instance, an Elastic Block Store (EBS) volume, an Elastic network Interface (ENI), or a security group. For a complete list of resources currently supported by AWS Config, see Supported AWS Resources (http://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources).

You can access and manage AWS Config through the AWS Management Console, the AWS Command Line Interface (AWS CLI), the AWS Config API, or the AWS SDKs for AWS Config

This reference guide contains documentation for the AWS Config API and the AWS CLI commands that you can use to manage AWS Config.

The AWS Config API uses the Signature Version 4 protocol for signing requests. For more information about how to sign a request with this protocol, see Signature Version 4 Signing Process (http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html).

For detailed information about AWS Config features and their associated actions or commands, as well as how to work with AWS Management Console, see What Is AWS Config? (http://docs.aws.amazon.com/config/latest/developerguide/WhatIsConfig.html) in the AWS Config Developer Guide. The service client's operations are safe to be used concurrently. It is not safe to mutate any of the client's properties though.

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *ConfigService

New creates a new instance of the ConfigService client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

// Create a ConfigService client from just a session.
svc := configservice.New(mySession)

// Create a ConfigService client with additional configuration
svc := configservice.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*ConfigService) DeleteConfigRule added in v0.9.13

func (c *ConfigService) DeleteConfigRule(input *DeleteConfigRuleInput) (*DeleteConfigRuleOutput, error)

Deletes the specified AWS Config rule and all of its evaluation results.

AWS Config sets the state of a rule to DELETING until the deletion is complete. You cannot update a rule while it is in this state. If you make a PutConfigRule or DeleteConfigRule request for the rule, you will receive a ResourceInUseException.

You can check the state of a rule by using the DescribeConfigRules request.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DeleteConfigRuleInput{
		ConfigRuleName: aws.String("StringWithCharLimit64"), // Required
	}
	resp, err := svc.DeleteConfigRule(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DeleteConfigRuleRequest added in v0.9.13

func (c *ConfigService) DeleteConfigRuleRequest(input *DeleteConfigRuleInput) (req *request.Request, output *DeleteConfigRuleOutput)

DeleteConfigRuleRequest generates a request for the DeleteConfigRule operation.

func (*ConfigService) DeleteDeliveryChannel

func (c *ConfigService) DeleteDeliveryChannel(input *DeleteDeliveryChannelInput) (*DeleteDeliveryChannelOutput, error)

Deletes the specified delivery channel.

The delivery channel cannot be deleted if it is the only delivery channel and the configuration recorder is still running. To delete the delivery channel, stop the running configuration recorder using the StopConfigurationRecorder action.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DeleteDeliveryChannelInput{
		DeliveryChannelName: aws.String("ChannelName"), // Required
	}
	resp, err := svc.DeleteDeliveryChannel(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DeleteDeliveryChannelRequest

func (c *ConfigService) DeleteDeliveryChannelRequest(input *DeleteDeliveryChannelInput) (req *request.Request, output *DeleteDeliveryChannelOutput)

DeleteDeliveryChannelRequest generates a request for the DeleteDeliveryChannel operation.

func (*ConfigService) DeliverConfigSnapshot

func (c *ConfigService) DeliverConfigSnapshot(input *DeliverConfigSnapshotInput) (*DeliverConfigSnapshotOutput, error)

Schedules delivery of a configuration snapshot to the Amazon S3 bucket in the specified delivery channel. After the delivery has started, AWS Config sends following notifications using an Amazon SNS topic that you have specified.

Notification of starting the delivery. Notification of delivery completed,

if the delivery was successfully completed. Notification of delivery failure, if the delivery failed to complete.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DeliverConfigSnapshotInput{
		DeliveryChannelName: aws.String("ChannelName"), // Required
	}
	resp, err := svc.DeliverConfigSnapshot(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DeliverConfigSnapshotRequest

func (c *ConfigService) DeliverConfigSnapshotRequest(input *DeliverConfigSnapshotInput) (req *request.Request, output *DeliverConfigSnapshotOutput)

DeliverConfigSnapshotRequest generates a request for the DeliverConfigSnapshot operation.

func (*ConfigService) DescribeComplianceByConfigRule added in v0.9.13

Indicates whether the specified AWS Config rules are compliant. If a rule is noncompliant, this action returns the number of AWS resources that do not comply with the rule.

A rule is compliant if all of the evaluated resources comply with it, and it is noncompliant if any of these resources do not comply.

If AWS Config has no current evaluation results for the rule, it returns INSUFFICIENT_DATA. This result might indicate one of the following conditions:

AWS Config has never invoked an evaluation for the rule. To check whether

it has, use the DescribeConfigRuleEvaluationStatus action to get the LastSuccessfulInvocationTime and LastFailedInvocationTime. The rule's AWS Lambda function is failing to send evaluation results to AWS Config. Verify that the role that you assigned to your configuration recorder includes the config:PutEvaluations permission. If the rule is a customer managed rule, verify that the AWS Lambda execution role includes the config:PutEvaluations permission. The rule's AWS Lambda function has returned NOT_APPLICABLE for all evaluation results. This can occur if the resources were deleted or removed from the rule's scope.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DescribeComplianceByConfigRuleInput{
		ComplianceTypes: []*string{
			aws.String("ComplianceType"), // Required
			// More values...
		},
		ConfigRuleNames: []*string{
			aws.String("StringWithCharLimit64"), // Required
			// More values...
		},
		NextToken: aws.String("String"),
	}
	resp, err := svc.DescribeComplianceByConfigRule(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DescribeComplianceByConfigRuleRequest added in v0.9.13

func (c *ConfigService) DescribeComplianceByConfigRuleRequest(input *DescribeComplianceByConfigRuleInput) (req *request.Request, output *DescribeComplianceByConfigRuleOutput)

DescribeComplianceByConfigRuleRequest generates a request for the DescribeComplianceByConfigRule operation.

func (*ConfigService) DescribeComplianceByResource added in v0.9.13

Indicates whether the specified AWS resources are compliant. If a resource is noncompliant, this action returns the number of AWS Config rules that the resource does not comply with.

A resource is compliant if it complies with all the AWS Config rules that evaluate it. It is noncompliant if it does not comply with one or more of these rules.

If AWS Config has no current evaluation results for the resource, it returns INSUFFICIENT_DATA. This result might indicate one of the following conditions about the rules that evaluate the resource: AWS Config has never invoked an evaluation for the rule. To check whether it has, use the DescribeConfigRuleEvaluationStatus action to get the LastSuccessfulInvocationTime and LastFailedInvocationTime. The rule's AWS Lambda function is failing to send evaluation results to AWS Config. Verify that the role that you assigned to your configuration recorder includes the config:PutEvaluations permission. If the rule is a customer managed rule, verify that the AWS Lambda execution role includes the config:PutEvaluations permission. The rule's AWS Lambda function has returned NOT_APPLICABLE for all evaluation results. This can occur if the resources were deleted or removed from the rule's scope.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DescribeComplianceByResourceInput{
		ComplianceTypes: []*string{
			aws.String("ComplianceType"), // Required
			// More values...
		},
		Limit:        aws.Int64(1),
		NextToken:    aws.String("NextToken"),
		ResourceId:   aws.String("StringWithCharLimit256"),
		ResourceType: aws.String("StringWithCharLimit256"),
	}
	resp, err := svc.DescribeComplianceByResource(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DescribeComplianceByResourceRequest added in v0.9.13

func (c *ConfigService) DescribeComplianceByResourceRequest(input *DescribeComplianceByResourceInput) (req *request.Request, output *DescribeComplianceByResourceOutput)

DescribeComplianceByResourceRequest generates a request for the DescribeComplianceByResource operation.

func (*ConfigService) DescribeConfigRuleEvaluationStatus added in v0.9.13

Returns status information for each of your AWS managed Config rules. The status includes information such as the last time AWS Config invoked the rule, the last time AWS Config failed to invoke the rule, and the related error for the last failure.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DescribeConfigRuleEvaluationStatusInput{
		ConfigRuleNames: []*string{
			aws.String("StringWithCharLimit64"), // Required
			// More values...
		},
	}
	resp, err := svc.DescribeConfigRuleEvaluationStatus(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DescribeConfigRuleEvaluationStatusRequest added in v0.9.13

func (c *ConfigService) DescribeConfigRuleEvaluationStatusRequest(input *DescribeConfigRuleEvaluationStatusInput) (req *request.Request, output *DescribeConfigRuleEvaluationStatusOutput)

DescribeConfigRuleEvaluationStatusRequest generates a request for the DescribeConfigRuleEvaluationStatus operation.

func (*ConfigService) DescribeConfigRules added in v0.9.13

func (c *ConfigService) DescribeConfigRules(input *DescribeConfigRulesInput) (*DescribeConfigRulesOutput, error)

Returns details about your AWS Config rules.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DescribeConfigRulesInput{
		ConfigRuleNames: []*string{
			aws.String("StringWithCharLimit64"), // Required
			// More values...
		},
		NextToken: aws.String("String"),
	}
	resp, err := svc.DescribeConfigRules(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DescribeConfigRulesRequest added in v0.9.13

func (c *ConfigService) DescribeConfigRulesRequest(input *DescribeConfigRulesInput) (req *request.Request, output *DescribeConfigRulesOutput)

DescribeConfigRulesRequest generates a request for the DescribeConfigRules operation.

func (*ConfigService) DescribeConfigurationRecorderStatus

Returns the current status of the specified configuration recorder. If a configuration recorder is not specified, this action returns the status of all configuration recorder associated with the account.

Currently, you can specify only one configuration recorder per account.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DescribeConfigurationRecorderStatusInput{
		ConfigurationRecorderNames: []*string{
			aws.String("RecorderName"), // Required
			// More values...
		},
	}
	resp, err := svc.DescribeConfigurationRecorderStatus(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DescribeConfigurationRecorderStatusRequest

func (c *ConfigService) DescribeConfigurationRecorderStatusRequest(input *DescribeConfigurationRecorderStatusInput) (req *request.Request, output *DescribeConfigurationRecorderStatusOutput)

DescribeConfigurationRecorderStatusRequest generates a request for the DescribeConfigurationRecorderStatus operation.

func (*ConfigService) DescribeConfigurationRecorders

Returns the name of one or more specified configuration recorders. If the recorder name is not specified, this action returns the names of all the configuration recorders associated with the account.

Currently, you can specify only one configuration recorder per account.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DescribeConfigurationRecordersInput{
		ConfigurationRecorderNames: []*string{
			aws.String("RecorderName"), // Required
			// More values...
		},
	}
	resp, err := svc.DescribeConfigurationRecorders(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DescribeConfigurationRecordersRequest

func (c *ConfigService) DescribeConfigurationRecordersRequest(input *DescribeConfigurationRecordersInput) (req *request.Request, output *DescribeConfigurationRecordersOutput)

DescribeConfigurationRecordersRequest generates a request for the DescribeConfigurationRecorders operation.

func (*ConfigService) DescribeDeliveryChannelStatus

Returns the current status of the specified delivery channel. If a delivery channel is not specified, this action returns the current status of all delivery channels associated with the account.

Currently, you can specify only one delivery channel per account.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DescribeDeliveryChannelStatusInput{
		DeliveryChannelNames: []*string{
			aws.String("ChannelName"), // Required
			// More values...
		},
	}
	resp, err := svc.DescribeDeliveryChannelStatus(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DescribeDeliveryChannelStatusRequest

func (c *ConfigService) DescribeDeliveryChannelStatusRequest(input *DescribeDeliveryChannelStatusInput) (req *request.Request, output *DescribeDeliveryChannelStatusOutput)

DescribeDeliveryChannelStatusRequest generates a request for the DescribeDeliveryChannelStatus operation.

func (*ConfigService) DescribeDeliveryChannels

func (c *ConfigService) DescribeDeliveryChannels(input *DescribeDeliveryChannelsInput) (*DescribeDeliveryChannelsOutput, error)

Returns details about the specified delivery channel. If a delivery channel is not specified, this action returns the details of all delivery channels associated with the account.

Currently, you can specify only one delivery channel per account.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.DescribeDeliveryChannelsInput{
		DeliveryChannelNames: []*string{
			aws.String("ChannelName"), // Required
			// More values...
		},
	}
	resp, err := svc.DescribeDeliveryChannels(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) DescribeDeliveryChannelsRequest

func (c *ConfigService) DescribeDeliveryChannelsRequest(input *DescribeDeliveryChannelsInput) (req *request.Request, output *DescribeDeliveryChannelsOutput)

DescribeDeliveryChannelsRequest generates a request for the DescribeDeliveryChannels operation.

func (*ConfigService) GetComplianceDetailsByConfigRule added in v0.9.13

Returns the evaluation results for the specified AWS Config rule. The results indicate which AWS resources were evaluated by the rule, when each resource was last evaluated, and whether each resource complies with the rule.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.GetComplianceDetailsByConfigRuleInput{
		ConfigRuleName: aws.String("StringWithCharLimit64"), // Required
		ComplianceTypes: []*string{
			aws.String("ComplianceType"), // Required
			// More values...
		},
		Limit:     aws.Int64(1),
		NextToken: aws.String("NextToken"),
	}
	resp, err := svc.GetComplianceDetailsByConfigRule(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) GetComplianceDetailsByConfigRuleRequest added in v0.9.13

func (c *ConfigService) GetComplianceDetailsByConfigRuleRequest(input *GetComplianceDetailsByConfigRuleInput) (req *request.Request, output *GetComplianceDetailsByConfigRuleOutput)

GetComplianceDetailsByConfigRuleRequest generates a request for the GetComplianceDetailsByConfigRule operation.

func (*ConfigService) GetComplianceDetailsByResource added in v0.9.13

Returns the evaluation results for the specified AWS resource. The results indicate which AWS Config rules were used to evaluate the resource, when each rule was last used, and whether the resource complies with each rule.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.GetComplianceDetailsByResourceInput{
		ResourceId:   aws.String("StringWithCharLimit256"), // Required
		ResourceType: aws.String("StringWithCharLimit256"), // Required
		ComplianceTypes: []*string{
			aws.String("ComplianceType"), // Required
			// More values...
		},
		NextToken: aws.String("String"),
	}
	resp, err := svc.GetComplianceDetailsByResource(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) GetComplianceDetailsByResourceRequest added in v0.9.13

func (c *ConfigService) GetComplianceDetailsByResourceRequest(input *GetComplianceDetailsByResourceInput) (req *request.Request, output *GetComplianceDetailsByResourceOutput)

GetComplianceDetailsByResourceRequest generates a request for the GetComplianceDetailsByResource operation.

func (*ConfigService) GetComplianceSummaryByConfigRule added in v0.9.13

Returns the number of AWS Config rules that are compliant and noncompliant, up to a maximum of 25 for each.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	var params *configservice.GetComplianceSummaryByConfigRuleInput
	resp, err := svc.GetComplianceSummaryByConfigRule(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) GetComplianceSummaryByConfigRuleRequest added in v0.9.13

func (c *ConfigService) GetComplianceSummaryByConfigRuleRequest(input *GetComplianceSummaryByConfigRuleInput) (req *request.Request, output *GetComplianceSummaryByConfigRuleOutput)

GetComplianceSummaryByConfigRuleRequest generates a request for the GetComplianceSummaryByConfigRule operation.

func (*ConfigService) GetComplianceSummaryByResourceType added in v0.9.13

Returns the number of resources that are compliant and the number that are noncompliant. You can specify one or more resource types to get these numbers for each resource type. The maximum number returned is 100.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.GetComplianceSummaryByResourceTypeInput{
		ResourceTypes: []*string{
			aws.String("StringWithCharLimit256"), // Required
			// More values...
		},
	}
	resp, err := svc.GetComplianceSummaryByResourceType(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) GetComplianceSummaryByResourceTypeRequest added in v0.9.13

func (c *ConfigService) GetComplianceSummaryByResourceTypeRequest(input *GetComplianceSummaryByResourceTypeInput) (req *request.Request, output *GetComplianceSummaryByResourceTypeOutput)

GetComplianceSummaryByResourceTypeRequest generates a request for the GetComplianceSummaryByResourceType operation.

func (*ConfigService) GetResourceConfigHistory

func (c *ConfigService) GetResourceConfigHistory(input *GetResourceConfigHistoryInput) (*GetResourceConfigHistoryOutput, error)

Returns a list of configuration items for the specified resource. The list contains details about each state of the resource during the specified time interval.

The response is paginated, and by default, AWS Config returns a limit of 10 configuration items per page. You can customize this number with the limit parameter. The response includes a nextToken string, and to get the next page of results, run the request again and enter this string for the nextToken parameter.

Each call to the API is limited to span a duration of seven days. It is

likely that the number of records returned is smaller than the specified limit. In such cases, you can make another call, using the nextToken.

Example
package main

import (
	"fmt"
	"time"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.GetResourceConfigHistoryInput{
		ResourceId:         aws.String("ResourceId"),   // Required
		ResourceType:       aws.String("ResourceType"), // Required
		ChronologicalOrder: aws.String("ChronologicalOrder"),
		EarlierTime:        aws.Time(time.Now()),
		LaterTime:          aws.Time(time.Now()),
		Limit:              aws.Int64(1),
		NextToken:          aws.String("NextToken"),
	}
	resp, err := svc.GetResourceConfigHistory(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) GetResourceConfigHistoryPages

func (c *ConfigService) GetResourceConfigHistoryPages(input *GetResourceConfigHistoryInput, fn func(p *GetResourceConfigHistoryOutput, lastPage bool) (shouldContinue bool)) error

func (*ConfigService) GetResourceConfigHistoryRequest

func (c *ConfigService) GetResourceConfigHistoryRequest(input *GetResourceConfigHistoryInput) (req *request.Request, output *GetResourceConfigHistoryOutput)

GetResourceConfigHistoryRequest generates a request for the GetResourceConfigHistory operation.

func (*ConfigService) ListDiscoveredResources added in v0.9.5

func (c *ConfigService) ListDiscoveredResources(input *ListDiscoveredResourcesInput) (*ListDiscoveredResourcesOutput, error)

Accepts a resource type and returns a list of resource identifiers for the resources of that type. A resource identifier includes the resource type, ID, and (if available) the custom resource name. The results consist of resources that AWS Config has discovered, including those that AWS Config is not currently recording. You can narrow the results to include only resources that have specific resource IDs or a resource name.

You can specify either resource IDs or a resource name but not both in the same request. The response is paginated, and by default AWS Config lists 100 resource identifiers on each page. You can customize this number with the limit parameter. The response includes a nextToken string, and to get the next page of results, run the request again and enter this string for the nextToken parameter.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.ListDiscoveredResourcesInput{
		ResourceType:            aws.String("ResourceType"), // Required
		IncludeDeletedResources: aws.Bool(true),
		Limit:                   aws.Int64(1),
		NextToken:               aws.String("NextToken"),
		ResourceIds: []*string{
			aws.String("ResourceId"), // Required
			// More values...
		},
		ResourceName: aws.String("ResourceName"),
	}
	resp, err := svc.ListDiscoveredResources(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) ListDiscoveredResourcesRequest added in v0.9.5

func (c *ConfigService) ListDiscoveredResourcesRequest(input *ListDiscoveredResourcesInput) (req *request.Request, output *ListDiscoveredResourcesOutput)

ListDiscoveredResourcesRequest generates a request for the ListDiscoveredResources operation.

func (*ConfigService) PutConfigRule added in v0.9.13

func (c *ConfigService) PutConfigRule(input *PutConfigRuleInput) (*PutConfigRuleOutput, error)

Adds or updates an AWS Config rule for evaluating whether your AWS resources comply with your desired configurations.

You can use this action for customer managed Config rules and AWS managed Config rules. A customer managed Config rule is a custom rule that you develop and maintain. An AWS managed Config rule is a customizable, predefined rule that is provided by AWS Config.

If you are adding a new customer managed Config rule, you must first create the AWS Lambda function that the rule invokes to evaluate your resources. When you use the PutConfigRule action to add the rule to AWS Config, you must specify the Amazon Resource Name (ARN) that AWS Lambda assigns to the function. Specify the ARN for the SourceIdentifier key. This key is part of the Source object, which is part of the ConfigRule object.

If you are adding a new AWS managed Config rule, specify the rule's identifier for the SourceIdentifier key. To reference AWS managed Config rule identifiers, see Using AWS Managed Config Rules (http://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_use-managed-rules.html).

For any new rule that you add, specify the ConfigRuleName in the ConfigRule object. Do not specify the ConfigRuleArn or the ConfigRuleId. These values are generated by AWS Config for new rules.

If you are updating a rule that you have added previously, specify the rule's ConfigRuleName, ConfigRuleId, or ConfigRuleArn in the ConfigRule data type that you use in this request.

The maximum number of rules that AWS Config supports is 25.

For more information about developing and using AWS Config rules, see Evaluating AWS Resource Configurations with AWS Config (http://docs.aws.amazon.com/config/latest/developerguide/evaluate-config.html) in the AWS Config Developer Guide.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.PutConfigRuleInput{
		ConfigRule: &configservice.ConfigRule{ // Required
			Source: &configservice.Source{ // Required
				Owner: aws.String("Owner"),
				SourceDetails: []*configservice.SourceDetail{
					{ // Required
						EventSource: aws.String("EventSource"),
						MessageType: aws.String("MessageType"),
					},
					// More values...
				},
				SourceIdentifier: aws.String("StringWithCharLimit256"),
			},
			ConfigRuleArn:             aws.String("String"),
			ConfigRuleId:              aws.String("String"),
			ConfigRuleName:            aws.String("StringWithCharLimit64"),
			ConfigRuleState:           aws.String("ConfigRuleState"),
			Description:               aws.String("EmptiableStringWithCharLimit256"),
			InputParameters:           aws.String("StringWithCharLimit256"),
			MaximumExecutionFrequency: aws.String("MaximumExecutionFrequency"),
			Scope: &configservice.Scope{
				ComplianceResourceId: aws.String("StringWithCharLimit256"),
				ComplianceResourceTypes: []*string{
					aws.String("StringWithCharLimit256"), // Required
					// More values...
				},
				TagKey:   aws.String("StringWithCharLimit128"),
				TagValue: aws.String("StringWithCharLimit256"),
			},
		},
	}
	resp, err := svc.PutConfigRule(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) PutConfigRuleRequest added in v0.9.13

func (c *ConfigService) PutConfigRuleRequest(input *PutConfigRuleInput) (req *request.Request, output *PutConfigRuleOutput)

PutConfigRuleRequest generates a request for the PutConfigRule operation.

func (*ConfigService) PutConfigurationRecorder

func (c *ConfigService) PutConfigurationRecorder(input *PutConfigurationRecorderInput) (*PutConfigurationRecorderOutput, error)

Creates a new configuration recorder to record the selected resource configurations.

You can use this action to change the role roleARN and/or the recordingGroup of an existing recorder. To change the role, call the action on the existing configuration recorder and specify a role.

Currently, you can specify only one configuration recorder per account.

If ConfigurationRecorder does not have the recordingGroup parameter specified, the default is to record all supported resource types.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.PutConfigurationRecorderInput{
		ConfigurationRecorder: &configservice.ConfigurationRecorder{ // Required
			Name: aws.String("RecorderName"),
			RecordingGroup: &configservice.RecordingGroup{
				AllSupported:               aws.Bool(true),
				IncludeGlobalResourceTypes: aws.Bool(true),
				ResourceTypes: []*string{
					aws.String("ResourceType"), // Required
					// More values...
				},
			},
			RoleARN: aws.String("String"),
		},
	}
	resp, err := svc.PutConfigurationRecorder(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) PutConfigurationRecorderRequest

func (c *ConfigService) PutConfigurationRecorderRequest(input *PutConfigurationRecorderInput) (req *request.Request, output *PutConfigurationRecorderOutput)

PutConfigurationRecorderRequest generates a request for the PutConfigurationRecorder operation.

func (*ConfigService) PutDeliveryChannel

func (c *ConfigService) PutDeliveryChannel(input *PutDeliveryChannelInput) (*PutDeliveryChannelOutput, error)

Creates a new delivery channel object to deliver the configuration information to an Amazon S3 bucket, and to an Amazon SNS topic.

You can use this action to change the Amazon S3 bucket or an Amazon SNS topic of the existing delivery channel. To change the Amazon S3 bucket or an Amazon SNS topic, call this action and specify the changed values for the S3 bucket and the SNS topic. If you specify a different value for either the S3 bucket or the SNS topic, this action will keep the existing value for the parameter that is not changed.

Currently, you can specify only one delivery channel per account.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.PutDeliveryChannelInput{
		DeliveryChannel: &configservice.DeliveryChannel{ // Required
			ConfigSnapshotDeliveryProperties: &configservice.ConfigSnapshotDeliveryProperties{
				DeliveryFrequency: aws.String("MaximumExecutionFrequency"),
			},
			Name:         aws.String("ChannelName"),
			S3BucketName: aws.String("String"),
			S3KeyPrefix:  aws.String("String"),
			SnsTopicARN:  aws.String("String"),
		},
	}
	resp, err := svc.PutDeliveryChannel(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) PutDeliveryChannelRequest

func (c *ConfigService) PutDeliveryChannelRequest(input *PutDeliveryChannelInput) (req *request.Request, output *PutDeliveryChannelOutput)

PutDeliveryChannelRequest generates a request for the PutDeliveryChannel operation.

func (*ConfigService) PutEvaluations added in v0.9.13

func (c *ConfigService) PutEvaluations(input *PutEvaluationsInput) (*PutEvaluationsOutput, error)

Used by an AWS Lambda function to deliver evaluation results to AWS Config. This action is required in every AWS Lambda function that is invoked by an AWS Config rule.

Example
package main

import (
	"fmt"
	"time"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.PutEvaluationsInput{
		ResultToken: aws.String("String"), // Required
		Evaluations: []*configservice.Evaluation{
			{ // Required
				ComplianceResourceId:   aws.String("StringWithCharLimit256"), // Required
				ComplianceResourceType: aws.String("StringWithCharLimit256"), // Required
				ComplianceType:         aws.String("ComplianceType"),         // Required
				OrderingTimestamp:      aws.Time(time.Now()),                 // Required
				Annotation:             aws.String("StringWithCharLimit256"),
			},
			// More values...
		},
	}
	resp, err := svc.PutEvaluations(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) PutEvaluationsRequest added in v0.9.13

func (c *ConfigService) PutEvaluationsRequest(input *PutEvaluationsInput) (req *request.Request, output *PutEvaluationsOutput)

PutEvaluationsRequest generates a request for the PutEvaluations operation.

func (*ConfigService) StartConfigurationRecorder

func (c *ConfigService) StartConfigurationRecorder(input *StartConfigurationRecorderInput) (*StartConfigurationRecorderOutput, error)

Starts recording configurations of the AWS resources you have selected to record in your AWS account.

You must have created at least one delivery channel to successfully start the configuration recorder.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.StartConfigurationRecorderInput{
		ConfigurationRecorderName: aws.String("RecorderName"), // Required
	}
	resp, err := svc.StartConfigurationRecorder(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) StartConfigurationRecorderRequest

func (c *ConfigService) StartConfigurationRecorderRequest(input *StartConfigurationRecorderInput) (req *request.Request, output *StartConfigurationRecorderOutput)

StartConfigurationRecorderRequest generates a request for the StartConfigurationRecorder operation.

func (*ConfigService) StopConfigurationRecorder

func (c *ConfigService) StopConfigurationRecorder(input *StopConfigurationRecorderInput) (*StopConfigurationRecorderOutput, error)

Stops recording configurations of the AWS resources you have selected to record in your AWS account.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/configservice"
)

func main() {
	svc := configservice.New(session.New())

	params := &configservice.StopConfigurationRecorderInput{
		ConfigurationRecorderName: aws.String("RecorderName"), // Required
	}
	resp, err := svc.StopConfigurationRecorder(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ConfigService) StopConfigurationRecorderRequest

func (c *ConfigService) StopConfigurationRecorderRequest(input *StopConfigurationRecorderInput) (req *request.Request, output *StopConfigurationRecorderOutput)

StopConfigurationRecorderRequest generates a request for the StopConfigurationRecorder operation.

type ConfigSnapshotDeliveryProperties added in v0.9.13

type ConfigSnapshotDeliveryProperties struct {

	// The frequency with which a AWS Config recurringly delivers configuration
	// snapshots.
	DeliveryFrequency *string `locationName:"deliveryFrequency" type:"string" enum:"MaximumExecutionFrequency"`
	// contains filtered or unexported fields
}

Options for how AWS Config delivers configuration snapshots to the Amazon S3 bucket in your delivery channel.

func (ConfigSnapshotDeliveryProperties) GoString added in v0.9.13

GoString returns the string representation

func (ConfigSnapshotDeliveryProperties) String added in v0.9.13

String returns the string representation

type ConfigStreamDeliveryInfo

type ConfigStreamDeliveryInfo struct {

	// The error code from the last attempted delivery.
	LastErrorCode *string `locationName:"lastErrorCode" type:"string"`

	// The error message from the last attempted delivery.
	LastErrorMessage *string `locationName:"lastErrorMessage" type:"string"`

	// Status of the last attempted delivery.
	//
	// Note Providing an SNS topic on a DeliveryChannel (http://docs.aws.amazon.com/config/latest/APIReference/API_DeliveryChannel.html)
	// for AWS Config is optional. If the SNS delivery is turned off, the last status
	// will be Not_Applicable.
	LastStatus *string `locationName:"lastStatus" type:"string" enum:"DeliveryStatus"`

	// The time from the last status change.
	LastStatusChangeTime *time.Time `locationName:"lastStatusChangeTime" type:"timestamp" timestampFormat:"unix"`
	// contains filtered or unexported fields
}

A list that contains the status of the delivery of the configuration stream notification to the Amazon SNS topic.

func (ConfigStreamDeliveryInfo) GoString added in v0.6.5

func (s ConfigStreamDeliveryInfo) GoString() string

GoString returns the string representation

func (ConfigStreamDeliveryInfo) String added in v0.6.5

func (s ConfigStreamDeliveryInfo) String() string

String returns the string representation

type ConfigurationItem

type ConfigurationItem struct {

	// The 12 digit AWS account ID associated with the resource.
	AccountId *string `locationName:"accountId" type:"string"`

	// The Amazon Resource Name (ARN) of the resource.
	Arn *string `locationName:"arn" type:"string"`

	// The Availability Zone associated with the resource.
	AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

	// The region where the resource resides.
	AwsRegion *string `locationName:"awsRegion" type:"string"`

	// The description of the resource configuration.
	Configuration *string `locationName:"configuration" type:"string"`

	// The time when the configuration recording was initiated.
	ConfigurationItemCaptureTime *time.Time `locationName:"configurationItemCaptureTime" type:"timestamp" timestampFormat:"unix"`

	// Unique MD5 hash that represents the configuration item's state.
	//
	// You can use MD5 hash to compare the states of two or more configuration
	// items that are associated with the same resource.
	ConfigurationItemMD5Hash *string `locationName:"configurationItemMD5Hash" type:"string"`

	// The configuration item status.
	ConfigurationItemStatus *string `locationName:"configurationItemStatus" type:"string" enum:"ConfigurationItemStatus"`

	// An identifier that indicates the ordering of the configuration items of a
	// resource.
	ConfigurationStateId *string `locationName:"configurationStateId" type:"string"`

	// A list of CloudTrail event IDs.
	//
	// A populated field indicates that the current configuration was initiated
	// by the events recorded in the CloudTrail log. For more information about
	// CloudTrail, see What is AWS CloudTrail? (http://docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html).
	//
	// An empty field indicates that the current configuration was not initiated
	// by any event.
	RelatedEvents []*string `locationName:"relatedEvents" type:"list"`

	// A list of related AWS resources.
	Relationships []*Relationship `locationName:"relationships" type:"list"`

	// The time stamp when the resource was created.
	ResourceCreationTime *time.Time `locationName:"resourceCreationTime" type:"timestamp" timestampFormat:"unix"`

	// The ID of the resource (for example., sg-xxxxxx).
	ResourceId *string `locationName:"resourceId" type:"string"`

	// The custom name of the resource, if available.
	ResourceName *string `locationName:"resourceName" type:"string"`

	// The type of AWS resource.
	ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"`

	// A mapping of key value tags associated with the resource.
	Tags map[string]*string `locationName:"tags" type:"map"`

	// The version number of the resource configuration.
	Version *string `locationName:"version" type:"string"`
	// contains filtered or unexported fields
}

A list that contains detailed configurations of a specified resource.

Currently, the list does not contain information about non-AWS components

(for example, applications on your Amazon EC2 instances).

func (ConfigurationItem) GoString added in v0.6.5

func (s ConfigurationItem) GoString() string

GoString returns the string representation

func (ConfigurationItem) String added in v0.6.5

func (s ConfigurationItem) String() string

String returns the string representation

type ConfigurationRecorder

type ConfigurationRecorder struct {

	// The name of the recorder. By default, AWS Config automatically assigns the
	// name "default" when creating the configuration recorder. You cannot change
	// the assigned name.
	Name *string `locationName:"name" min:"1" type:"string"`

	// Specifies the types of AWS resource for which AWS Config records configuration
	// changes.
	RecordingGroup *RecordingGroup `locationName:"recordingGroup" type:"structure"`

	// Amazon Resource Name (ARN) of the IAM role used to describe the AWS resources
	// associated with the account.
	RoleARN *string `locationName:"roleARN" type:"string"`
	// contains filtered or unexported fields
}

An object that represents the recording of configuration changes of an AWS resource.

func (ConfigurationRecorder) GoString added in v0.6.5

func (s ConfigurationRecorder) GoString() string

GoString returns the string representation

func (ConfigurationRecorder) String added in v0.6.5

func (s ConfigurationRecorder) String() string

String returns the string representation

func (*ConfigurationRecorder) Validate added in v1.1.21

func (s *ConfigurationRecorder) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ConfigurationRecorderStatus

type ConfigurationRecorderStatus struct {

	// The error code indicating that the recording failed.
	LastErrorCode *string `locationName:"lastErrorCode" type:"string"`

	// The message indicating that the recording failed due to an error.
	LastErrorMessage *string `locationName:"lastErrorMessage" type:"string"`

	// The time the recorder was last started.
	LastStartTime *time.Time `locationName:"lastStartTime" type:"timestamp" timestampFormat:"unix"`

	// The last (previous) status of the recorder.
	LastStatus *string `locationName:"lastStatus" type:"string" enum:"RecorderStatus"`

	// The time when the status was last changed.
	LastStatusChangeTime *time.Time `locationName:"lastStatusChangeTime" type:"timestamp" timestampFormat:"unix"`

	// The time the recorder was last stopped.
	LastStopTime *time.Time `locationName:"lastStopTime" type:"timestamp" timestampFormat:"unix"`

	// The name of the configuration recorder.
	Name *string `locationName:"name" type:"string"`

	// Specifies whether the recorder is currently recording or not.
	Recording *bool `locationName:"recording" type:"boolean"`
	// contains filtered or unexported fields
}

The current status of the configuration recorder.

func (ConfigurationRecorderStatus) GoString added in v0.6.5

func (s ConfigurationRecorderStatus) GoString() string

GoString returns the string representation

func (ConfigurationRecorderStatus) String added in v0.6.5

String returns the string representation

type DeleteConfigRuleInput added in v0.9.13

type DeleteConfigRuleInput struct {

	// The name of the AWS Config rule that you want to delete.
	ConfigRuleName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteConfigRuleInput) GoString added in v0.9.13

func (s DeleteConfigRuleInput) GoString() string

GoString returns the string representation

func (DeleteConfigRuleInput) String added in v0.9.13

func (s DeleteConfigRuleInput) String() string

String returns the string representation

func (*DeleteConfigRuleInput) Validate added in v1.1.21

func (s *DeleteConfigRuleInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteConfigRuleOutput added in v0.9.13

type DeleteConfigRuleOutput struct {
	// contains filtered or unexported fields
}

func (DeleteConfigRuleOutput) GoString added in v0.9.13

func (s DeleteConfigRuleOutput) GoString() string

GoString returns the string representation

func (DeleteConfigRuleOutput) String added in v0.9.13

func (s DeleteConfigRuleOutput) String() string

String returns the string representation

type DeleteDeliveryChannelInput

type DeleteDeliveryChannelInput struct {

	// The name of the delivery channel to delete.
	DeliveryChannelName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

The input for the DeleteDeliveryChannel action. The action accepts the following data in JSON format.

func (DeleteDeliveryChannelInput) GoString added in v0.6.5

func (s DeleteDeliveryChannelInput) GoString() string

GoString returns the string representation

func (DeleteDeliveryChannelInput) String added in v0.6.5

String returns the string representation

func (*DeleteDeliveryChannelInput) Validate added in v1.1.21

func (s *DeleteDeliveryChannelInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDeliveryChannelOutput

type DeleteDeliveryChannelOutput struct {
	// contains filtered or unexported fields
}

func (DeleteDeliveryChannelOutput) GoString added in v0.6.5

func (s DeleteDeliveryChannelOutput) GoString() string

GoString returns the string representation

func (DeleteDeliveryChannelOutput) String added in v0.6.5

String returns the string representation

type DeliverConfigSnapshotInput

type DeliverConfigSnapshotInput struct {

	// The name of the delivery channel through which the snapshot is delivered.
	DeliveryChannelName *string `locationName:"deliveryChannelName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

The input for the DeliverConfigSnapshot action.

func (DeliverConfigSnapshotInput) GoString added in v0.6.5

func (s DeliverConfigSnapshotInput) GoString() string

GoString returns the string representation

func (DeliverConfigSnapshotInput) String added in v0.6.5

String returns the string representation

func (*DeliverConfigSnapshotInput) Validate added in v1.1.21

func (s *DeliverConfigSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeliverConfigSnapshotOutput

type DeliverConfigSnapshotOutput struct {

	// The ID of the snapshot that is being created.
	ConfigSnapshotId *string `locationName:"configSnapshotId" type:"string"`
	// contains filtered or unexported fields
}

The output for the DeliverConfigSnapshot action in JSON format.

func (DeliverConfigSnapshotOutput) GoString added in v0.6.5

func (s DeliverConfigSnapshotOutput) GoString() string

GoString returns the string representation

func (DeliverConfigSnapshotOutput) String added in v0.6.5

String returns the string representation

type DeliveryChannel

type DeliveryChannel struct {

	// Options for how AWS Config delivers configuration snapshots to the Amazon
	// S3 bucket in your delivery channel.
	ConfigSnapshotDeliveryProperties *ConfigSnapshotDeliveryProperties `locationName:"configSnapshotDeliveryProperties" type:"structure"`

	// The name of the delivery channel. By default, AWS Config automatically assigns
	// the name "default" when creating the delivery channel. You cannot change
	// the assigned name.
	Name *string `locationName:"name" min:"1" type:"string"`

	// The name of the Amazon S3 bucket used to store configuration history for
	// the delivery channel.
	S3BucketName *string `locationName:"s3BucketName" type:"string"`

	// The prefix for the specified Amazon S3 bucket.
	S3KeyPrefix *string `locationName:"s3KeyPrefix" type:"string"`

	// The Amazon Resource Name (ARN) of the SNS topic that AWS Config delivers
	// notifications to.
	SnsTopicARN *string `locationName:"snsTopicARN" type:"string"`
	// contains filtered or unexported fields
}

A logical container used for storing the configuration changes of an AWS resource.

func (DeliveryChannel) GoString added in v0.6.5

func (s DeliveryChannel) GoString() string

GoString returns the string representation

func (DeliveryChannel) String added in v0.6.5

func (s DeliveryChannel) String() string

String returns the string representation

func (*DeliveryChannel) Validate added in v1.1.21

func (s *DeliveryChannel) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeliveryChannelStatus

type DeliveryChannelStatus struct {

	// A list that contains the status of the delivery of the configuration history
	// to the specified Amazon S3 bucket.
	ConfigHistoryDeliveryInfo *ConfigExportDeliveryInfo `locationName:"configHistoryDeliveryInfo" type:"structure"`

	// A list containing the status of the delivery of the snapshot to the specified
	// Amazon S3 bucket.
	ConfigSnapshotDeliveryInfo *ConfigExportDeliveryInfo `locationName:"configSnapshotDeliveryInfo" type:"structure"`

	// A list containing the status of the delivery of the configuration stream
	// notification to the specified Amazon SNS topic.
	ConfigStreamDeliveryInfo *ConfigStreamDeliveryInfo `locationName:"configStreamDeliveryInfo" type:"structure"`

	// The name of the delivery channel.
	Name *string `locationName:"name" type:"string"`
	// contains filtered or unexported fields
}

The status of a specified delivery channel.

Valid values: Success | Failure

func (DeliveryChannelStatus) GoString added in v0.6.5

func (s DeliveryChannelStatus) GoString() string

GoString returns the string representation

func (DeliveryChannelStatus) String added in v0.6.5

func (s DeliveryChannelStatus) String() string

String returns the string representation

type DescribeComplianceByConfigRuleInput added in v0.9.13

type DescribeComplianceByConfigRuleInput struct {

	// Filters the results by compliance.
	//
	// The allowed values are COMPLIANT, NON_COMPLIANT, and INSUFFICIENT_DATA.
	ComplianceTypes []*string `type:"list"`

	// Specify one or more AWS Config rule names to filter the results by rule.
	ConfigRuleNames []*string `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeComplianceByConfigRuleInput) GoString added in v0.9.13

GoString returns the string representation

func (DescribeComplianceByConfigRuleInput) String added in v0.9.13

String returns the string representation

type DescribeComplianceByConfigRuleOutput added in v0.9.13

type DescribeComplianceByConfigRuleOutput struct {

	// Indicates whether each of the specified AWS Config rules is compliant.
	ComplianceByConfigRules []*ComplianceByConfigRule `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeComplianceByConfigRuleOutput) GoString added in v0.9.13

GoString returns the string representation

func (DescribeComplianceByConfigRuleOutput) String added in v0.9.13

String returns the string representation

type DescribeComplianceByResourceInput added in v0.9.13

type DescribeComplianceByResourceInput struct {

	// Filters the results by compliance.
	//
	// The allowed values are COMPLIANT, NON_COMPLIANT, and INSUFFICIENT_DATA.
	ComplianceTypes []*string `type:"list"`

	// The maximum number of evaluation results returned on each page. The default
	// is 10. You cannot specify a limit greater than 100. If you specify 0, AWS
	// Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The ID of the AWS resource for which you want compliance information. You
	// can specify only one resource ID. If you specify a resource ID, you must
	// also specify a type for ResourceType.
	ResourceId *string `min:"1" type:"string"`

	// The types of AWS resources for which you want compliance information; for
	// example, AWS::EC2::Instance. For this action, you can specify that the resource
	// type is an AWS account by specifying AWS::::Account.
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (DescribeComplianceByResourceInput) GoString added in v0.9.13

GoString returns the string representation

func (DescribeComplianceByResourceInput) String added in v0.9.13

String returns the string representation

func (*DescribeComplianceByResourceInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type DescribeComplianceByResourceOutput added in v0.9.13

type DescribeComplianceByResourceOutput struct {

	// Indicates whether the specified AWS resource complies with all of the AWS
	// Config rules that evaluate it.
	ComplianceByResources []*ComplianceByResource `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeComplianceByResourceOutput) GoString added in v0.9.13

GoString returns the string representation

func (DescribeComplianceByResourceOutput) String added in v0.9.13

String returns the string representation

type DescribeConfigRuleEvaluationStatusInput added in v0.9.13

type DescribeConfigRuleEvaluationStatusInput struct {

	// The name of the AWS managed Config rules for which you want status information.
	// If you do not specify any names, AWS Config returns status information for
	// all AWS managed Config rules that you use.
	ConfigRuleNames []*string `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeConfigRuleEvaluationStatusInput) GoString added in v0.9.13

GoString returns the string representation

func (DescribeConfigRuleEvaluationStatusInput) String added in v0.9.13

String returns the string representation

type DescribeConfigRuleEvaluationStatusOutput added in v0.9.13

type DescribeConfigRuleEvaluationStatusOutput struct {

	// Status information about your AWS managed Config rules.
	ConfigRulesEvaluationStatus []*ConfigRuleEvaluationStatus `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeConfigRuleEvaluationStatusOutput) GoString added in v0.9.13

GoString returns the string representation

func (DescribeConfigRuleEvaluationStatusOutput) String added in v0.9.13

String returns the string representation

type DescribeConfigRulesInput added in v0.9.13

type DescribeConfigRulesInput struct {

	// The names of the AWS Config rules for which you want details. If you do not
	// specify any names, AWS Config returns details for all your rules.
	ConfigRuleNames []*string `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConfigRulesInput) GoString added in v0.9.13

func (s DescribeConfigRulesInput) GoString() string

GoString returns the string representation

func (DescribeConfigRulesInput) String added in v0.9.13

func (s DescribeConfigRulesInput) String() string

String returns the string representation

type DescribeConfigRulesOutput added in v0.9.13

type DescribeConfigRulesOutput struct {

	// The details about your AWS Config rules.
	ConfigRules []*ConfigRule `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConfigRulesOutput) GoString added in v0.9.13

func (s DescribeConfigRulesOutput) GoString() string

GoString returns the string representation

func (DescribeConfigRulesOutput) String added in v0.9.13

func (s DescribeConfigRulesOutput) String() string

String returns the string representation

type DescribeConfigurationRecorderStatusInput

type DescribeConfigurationRecorderStatusInput struct {

	// The name(s) of the configuration recorder. If the name is not specified,
	// the action returns the current status of all the configuration recorders
	// associated with the account.
	ConfigurationRecorderNames []*string `type:"list"`
	// contains filtered or unexported fields
}

The input for the DescribeConfigurationRecorderStatus action.

func (DescribeConfigurationRecorderStatusInput) GoString added in v0.6.5

GoString returns the string representation

func (DescribeConfigurationRecorderStatusInput) String added in v0.6.5

String returns the string representation

type DescribeConfigurationRecorderStatusOutput

type DescribeConfigurationRecorderStatusOutput struct {

	// A list that contains status of the specified recorders.
	ConfigurationRecordersStatus []*ConfigurationRecorderStatus `type:"list"`
	// contains filtered or unexported fields
}

The output for the DescribeConfigurationRecorderStatus action in JSON format.

func (DescribeConfigurationRecorderStatusOutput) GoString added in v0.6.5

GoString returns the string representation

func (DescribeConfigurationRecorderStatusOutput) String added in v0.6.5

String returns the string representation

type DescribeConfigurationRecordersInput

type DescribeConfigurationRecordersInput struct {

	// A list of configuration recorder names.
	ConfigurationRecorderNames []*string `type:"list"`
	// contains filtered or unexported fields
}

The input for the DescribeConfigurationRecorders action.

func (DescribeConfigurationRecordersInput) GoString added in v0.6.5

GoString returns the string representation

func (DescribeConfigurationRecordersInput) String added in v0.6.5

String returns the string representation

type DescribeConfigurationRecordersOutput

type DescribeConfigurationRecordersOutput struct {

	// A list that contains the descriptions of the specified configuration recorders.
	ConfigurationRecorders []*ConfigurationRecorder `type:"list"`
	// contains filtered or unexported fields
}

The output for the DescribeConfigurationRecorders action.

func (DescribeConfigurationRecordersOutput) GoString added in v0.6.5

GoString returns the string representation

func (DescribeConfigurationRecordersOutput) String added in v0.6.5

String returns the string representation

type DescribeDeliveryChannelStatusInput

type DescribeDeliveryChannelStatusInput struct {

	// A list of delivery channel names.
	DeliveryChannelNames []*string `type:"list"`
	// contains filtered or unexported fields
}

The input for the DeliveryChannelStatus action.

func (DescribeDeliveryChannelStatusInput) GoString added in v0.6.5

GoString returns the string representation

func (DescribeDeliveryChannelStatusInput) String added in v0.6.5

String returns the string representation

type DescribeDeliveryChannelStatusOutput

type DescribeDeliveryChannelStatusOutput struct {

	// A list that contains the status of a specified delivery channel.
	DeliveryChannelsStatus []*DeliveryChannelStatus `type:"list"`
	// contains filtered or unexported fields
}

The output for the DescribeDeliveryChannelStatus action.

func (DescribeDeliveryChannelStatusOutput) GoString added in v0.6.5

GoString returns the string representation

func (DescribeDeliveryChannelStatusOutput) String added in v0.6.5

String returns the string representation

type DescribeDeliveryChannelsInput

type DescribeDeliveryChannelsInput struct {

	// A list of delivery channel names.
	DeliveryChannelNames []*string `type:"list"`
	// contains filtered or unexported fields
}

The input for the DescribeDeliveryChannels action.

func (DescribeDeliveryChannelsInput) GoString added in v0.6.5

GoString returns the string representation

func (DescribeDeliveryChannelsInput) String added in v0.6.5

String returns the string representation

type DescribeDeliveryChannelsOutput

type DescribeDeliveryChannelsOutput struct {

	// A list that contains the descriptions of the specified delivery channel.
	DeliveryChannels []*DeliveryChannel `type:"list"`
	// contains filtered or unexported fields
}

The output for the DescribeDeliveryChannels action.

func (DescribeDeliveryChannelsOutput) GoString added in v0.6.5

GoString returns the string representation

func (DescribeDeliveryChannelsOutput) String added in v0.6.5

String returns the string representation

type Evaluation added in v0.9.13

type Evaluation struct {

	// Supplementary information about how the evaluation determined the compliance.
	Annotation *string `min:"1" type:"string"`

	// The ID of the AWS resource that was evaluated.
	ComplianceResourceId *string `min:"1" type:"string" required:"true"`

	// The type of AWS resource that was evaluated.
	ComplianceResourceType *string `min:"1" type:"string" required:"true"`

	// Indicates whether the AWS resource complies with the AWS Config rule that
	// it was evaluated against.
	//
	// For the Evaluation data type, AWS Config supports only the COMPLIANT, NON_COMPLIANT,
	// and NOT_APPLICABLE values. AWS Config does not support the INSUFFICIENT_DATA
	// value for this data type.
	//
	// Similarly, AWS Config does not accept INSUFFICIENT_DATA as the value for
	// ComplianceType from a PutEvaluations request. For example, an AWS Lambda
	// function for a custom Config rule cannot pass an INSUFFICIENT_DATA value
	// to AWS Config.
	ComplianceType *string `type:"string" required:"true" enum:"ComplianceType"`

	// The time of the event in AWS Config that triggered the evaluation. For event-based
	// evaluations, the time indicates when AWS Config created the configuration
	// item that triggered the evaluation. For periodic evaluations, the time indicates
	// when AWS Config delivered the configuration snapshot that triggered the evaluation.
	OrderingTimestamp *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
	// contains filtered or unexported fields
}

Identifies an AWS resource and indicates whether it complies with the AWS Config rule that it was evaluated against.

func (Evaluation) GoString added in v0.9.13

func (s Evaluation) GoString() string

GoString returns the string representation

func (Evaluation) String added in v0.9.13

func (s Evaluation) String() string

String returns the string representation

func (*Evaluation) Validate added in v1.1.21

func (s *Evaluation) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EvaluationResult added in v0.9.13

type EvaluationResult struct {

	// Supplementary information about how the evaluation determined the compliance.
	Annotation *string `min:"1" type:"string"`

	// Indicates whether the AWS resource complies with the AWS Config rule that
	// evaluated it.
	//
	// For the EvaluationResult data type, AWS Config supports only the COMPLIANT,
	// NON_COMPLIANT, and NOT_APPLICABLE values. AWS Config does not support the
	// INSUFFICIENT_DATA value for the EvaluationResult data type.
	ComplianceType *string `type:"string" enum:"ComplianceType"`

	// The time when the AWS Config rule evaluated the AWS resource.
	ConfigRuleInvokedTime *time.Time `type:"timestamp" timestampFormat:"unix"`

	// Uniquely identifies the evaluation result.
	EvaluationResultIdentifier *EvaluationResultIdentifier `type:"structure"`

	// The time when AWS Config recorded the evaluation result.
	ResultRecordedTime *time.Time `type:"timestamp" timestampFormat:"unix"`

	// An encrypted token that associates an evaluation with an AWS Config rule.
	// The token identifies the rule, the AWS resource being evaluated, and the
	// event that triggered the evaluation.
	ResultToken *string `type:"string"`
	// contains filtered or unexported fields
}

The details of an AWS Config evaluation. Provides the AWS resource that was evaluated, the compliance of the resource, related timestamps, and supplementary information.

func (EvaluationResult) GoString added in v0.9.13

func (s EvaluationResult) GoString() string

GoString returns the string representation

func (EvaluationResult) String added in v0.9.13

func (s EvaluationResult) String() string

String returns the string representation

type EvaluationResultIdentifier added in v0.9.13

type EvaluationResultIdentifier struct {

	// Identifies an AWS Config rule used to evaluate an AWS resource, and provides
	// the type and ID of the evaluated resource.
	EvaluationResultQualifier *EvaluationResultQualifier `type:"structure"`

	// The time of the event that triggered the evaluation of your AWS resources.
	// The time can indicate when AWS Config delivered a configuration item change
	// notification, or it can indicate when AWS Config delivered the configuration
	// snapshot, depending on which event triggered the evaluation.
	OrderingTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"`
	// contains filtered or unexported fields
}

Uniquely identifies an evaluation result.

func (EvaluationResultIdentifier) GoString added in v0.9.13

func (s EvaluationResultIdentifier) GoString() string

GoString returns the string representation

func (EvaluationResultIdentifier) String added in v0.9.13

String returns the string representation

type EvaluationResultQualifier added in v0.9.13

type EvaluationResultQualifier struct {

	// The name of the AWS Config rule that was used in the evaluation.
	ConfigRuleName *string `min:"1" type:"string"`

	// The ID of the evaluated AWS resource.
	ResourceId *string `min:"1" type:"string"`

	// The type of AWS resource that was evaluated.
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Identifies an AWS Config rule that evaluated an AWS resource, and provides the type and ID of the resource that the rule evaluated.

func (EvaluationResultQualifier) GoString added in v0.9.13

func (s EvaluationResultQualifier) GoString() string

GoString returns the string representation

func (EvaluationResultQualifier) String added in v0.9.13

func (s EvaluationResultQualifier) String() string

String returns the string representation

type GetComplianceDetailsByConfigRuleInput added in v0.9.13

type GetComplianceDetailsByConfigRuleInput struct {

	// Filters the results by compliance.
	//
	// The allowed values are COMPLIANT, NON_COMPLIANT, and NOT_APPLICABLE.
	ComplianceTypes []*string `type:"list"`

	// The name of the AWS Config rule for which you want compliance information.
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// The maximum number of evaluation results returned on each page. The default
	// is 10. You cannot specify a limit greater than 100. If you specify 0, AWS
	// Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetComplianceDetailsByConfigRuleInput) GoString added in v0.9.13

GoString returns the string representation

func (GetComplianceDetailsByConfigRuleInput) String added in v0.9.13

String returns the string representation

func (*GetComplianceDetailsByConfigRuleInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type GetComplianceDetailsByConfigRuleOutput added in v0.9.13

type GetComplianceDetailsByConfigRuleOutput struct {

	// Indicates whether the AWS resource complies with the specified AWS Config
	// rule.
	EvaluationResults []*EvaluationResult `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetComplianceDetailsByConfigRuleOutput) GoString added in v0.9.13

GoString returns the string representation

func (GetComplianceDetailsByConfigRuleOutput) String added in v0.9.13

String returns the string representation

type GetComplianceDetailsByResourceInput added in v0.9.13

type GetComplianceDetailsByResourceInput struct {

	// Filters the results by compliance.
	//
	// The allowed values are COMPLIANT, NON_COMPLIANT, and NOT_APPLICABLE.
	ComplianceTypes []*string `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The ID of the AWS resource for which you want compliance information.
	ResourceId *string `min:"1" type:"string" required:"true"`

	// The type of the AWS resource for which you want compliance information.
	ResourceType *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (GetComplianceDetailsByResourceInput) GoString added in v0.9.13

GoString returns the string representation

func (GetComplianceDetailsByResourceInput) String added in v0.9.13

String returns the string representation

func (*GetComplianceDetailsByResourceInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type GetComplianceDetailsByResourceOutput added in v0.9.13

type GetComplianceDetailsByResourceOutput struct {

	// Indicates whether the specified AWS resource complies each AWS Config rule.
	EvaluationResults []*EvaluationResult `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetComplianceDetailsByResourceOutput) GoString added in v0.9.13

GoString returns the string representation

func (GetComplianceDetailsByResourceOutput) String added in v0.9.13

String returns the string representation

type GetComplianceSummaryByConfigRuleInput added in v0.9.13

type GetComplianceSummaryByConfigRuleInput struct {
	// contains filtered or unexported fields
}

func (GetComplianceSummaryByConfigRuleInput) GoString added in v0.9.13

GoString returns the string representation

func (GetComplianceSummaryByConfigRuleInput) String added in v0.9.13

String returns the string representation

type GetComplianceSummaryByConfigRuleOutput added in v0.9.13

type GetComplianceSummaryByConfigRuleOutput struct {

	// The number of AWS Config rules that are compliant and the number that are
	// noncompliant, up to a maximum of 25 for each.
	ComplianceSummary *ComplianceSummary `type:"structure"`
	// contains filtered or unexported fields
}

func (GetComplianceSummaryByConfigRuleOutput) GoString added in v0.9.13

GoString returns the string representation

func (GetComplianceSummaryByConfigRuleOutput) String added in v0.9.13

String returns the string representation

type GetComplianceSummaryByResourceTypeInput added in v0.9.13

type GetComplianceSummaryByResourceTypeInput struct {

	// Specify one or more resource types to get the number of resources that are
	// compliant and the number that are noncompliant for each resource type.
	//
	// For this request, you can specify an AWS resource type such as AWS::EC2::Instance,
	// and you can specify that the resource type is an AWS account by specifying
	// AWS::::Account.
	ResourceTypes []*string `type:"list"`
	// contains filtered or unexported fields
}

func (GetComplianceSummaryByResourceTypeInput) GoString added in v0.9.13

GoString returns the string representation

func (GetComplianceSummaryByResourceTypeInput) String added in v0.9.13

String returns the string representation

type GetComplianceSummaryByResourceTypeOutput added in v0.9.13

type GetComplianceSummaryByResourceTypeOutput struct {

	// The number of resources that are compliant and the number that are noncompliant.
	// If one or more resource types were provided with the request, the numbers
	// are returned for each resource type. The maximum number returned is 100.
	ComplianceSummariesByResourceType []*ComplianceSummaryByResourceType `type:"list"`
	// contains filtered or unexported fields
}

func (GetComplianceSummaryByResourceTypeOutput) GoString added in v0.9.13

GoString returns the string representation

func (GetComplianceSummaryByResourceTypeOutput) String added in v0.9.13

String returns the string representation

type GetResourceConfigHistoryInput

type GetResourceConfigHistoryInput struct {

	// The chronological order for configuration items listed. By default the results
	// are listed in reverse chronological order.
	ChronologicalOrder *string `locationName:"chronologicalOrder" type:"string" enum:"ChronologicalOrder"`

	// The time stamp that indicates an earlier time. If not specified, the action
	// returns paginated results that contain configuration items that start from
	// when the first configuration item was recorded.
	EarlierTime *time.Time `locationName:"earlierTime" type:"timestamp" timestampFormat:"unix"`

	// The time stamp that indicates a later time. If not specified, current time
	// is taken.
	LaterTime *time.Time `locationName:"laterTime" type:"timestamp" timestampFormat:"unix"`

	// The maximum number of configuration items returned on each page. The default
	// is 10. You cannot specify a limit greater than 100. If you specify 0, AWS
	// Config uses the default.
	Limit *int64 `locationName:"limit" type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The ID of the resource (for example., sg-xxxxxx).
	ResourceId *string `locationName:"resourceId" type:"string" required:"true"`

	// The resource type.
	ResourceType *string `locationName:"resourceType" type:"string" required:"true" enum:"ResourceType"`
	// contains filtered or unexported fields
}

The input for the GetResourceConfigHistory action.

func (GetResourceConfigHistoryInput) GoString added in v0.6.5

GoString returns the string representation

func (GetResourceConfigHistoryInput) String added in v0.6.5

String returns the string representation

func (*GetResourceConfigHistoryInput) Validate added in v1.1.21

func (s *GetResourceConfigHistoryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetResourceConfigHistoryOutput

type GetResourceConfigHistoryOutput struct {

	// A list that contains the configuration history of one or more resources.
	ConfigurationItems []*ConfigurationItem `locationName:"configurationItems" type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

The output for the GetResourceConfigHistory action.

func (GetResourceConfigHistoryOutput) GoString added in v0.6.5

GoString returns the string representation

func (GetResourceConfigHistoryOutput) String added in v0.6.5

String returns the string representation

type ListDiscoveredResourcesInput added in v0.9.5

type ListDiscoveredResourcesInput struct {

	// Specifies whether AWS Config includes deleted resources in the results. By
	// default, deleted resources are not included.
	IncludeDeletedResources *bool `locationName:"includeDeletedResources" type:"boolean"`

	// The maximum number of resource identifiers returned on each page. The default
	// is 100. You cannot specify a limit greater than 100. If you specify 0, AWS
	// Config uses the default.
	Limit *int64 `locationName:"limit" type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The IDs of only those resources that you want AWS Config to list in the response.
	// If you do not specify this parameter, AWS Config lists all resources of the
	// specified type that it has discovered.
	ResourceIds []*string `locationName:"resourceIds" type:"list"`

	// The custom name of only those resources that you want AWS Config to list
	// in the response. If you do not specify this parameter, AWS Config lists all
	// resources of the specified type that it has discovered.
	ResourceName *string `locationName:"resourceName" type:"string"`

	// The type of resources that you want AWS Config to list in the response.
	ResourceType *string `locationName:"resourceType" type:"string" required:"true" enum:"ResourceType"`
	// contains filtered or unexported fields
}

func (ListDiscoveredResourcesInput) GoString added in v0.9.5

func (s ListDiscoveredResourcesInput) GoString() string

GoString returns the string representation

func (ListDiscoveredResourcesInput) String added in v0.9.5

String returns the string representation

func (*ListDiscoveredResourcesInput) Validate added in v1.1.21

func (s *ListDiscoveredResourcesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListDiscoveredResourcesOutput added in v0.9.5

type ListDiscoveredResourcesOutput struct {

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The details that identify a resource that is discovered by AWS Config, including
	// the resource type, ID, and (if available) the custom resource name.
	ResourceIdentifiers []*ResourceIdentifier `locationName:"resourceIdentifiers" type:"list"`
	// contains filtered or unexported fields
}

func (ListDiscoveredResourcesOutput) GoString added in v0.9.5

GoString returns the string representation

func (ListDiscoveredResourcesOutput) String added in v0.9.5

String returns the string representation

type PutConfigRuleInput added in v0.9.13

type PutConfigRuleInput struct {

	// An AWS Lambda function that evaluates configuration items to assess whether
	// your AWS resources comply with your desired configurations. This function
	// can run when AWS Config detects a configuration change to an AWS resource,
	// or when it delivers a configuration snapshot of the resources in the account.
	//
	// For more information about developing and using AWS Config rules, see Evaluating
	// AWS Resource Configurations with AWS Config (http://docs.aws.amazon.com/config/latest/developerguide/evaluate-config.html)
	// in the AWS Config Developer Guide.
	ConfigRule *ConfigRule `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (PutConfigRuleInput) GoString added in v0.9.13

func (s PutConfigRuleInput) GoString() string

GoString returns the string representation

func (PutConfigRuleInput) String added in v0.9.13

func (s PutConfigRuleInput) String() string

String returns the string representation

func (*PutConfigRuleInput) Validate added in v1.1.21

func (s *PutConfigRuleInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutConfigRuleOutput added in v0.9.13

type PutConfigRuleOutput struct {
	// contains filtered or unexported fields
}

func (PutConfigRuleOutput) GoString added in v0.9.13

func (s PutConfigRuleOutput) GoString() string

GoString returns the string representation

func (PutConfigRuleOutput) String added in v0.9.13

func (s PutConfigRuleOutput) String() string

String returns the string representation

type PutConfigurationRecorderInput

type PutConfigurationRecorderInput struct {

	// The configuration recorder object that records each configuration change
	// made to the resources.
	ConfigurationRecorder *ConfigurationRecorder `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

The input for the PutConfigurationRecorder action.

func (PutConfigurationRecorderInput) GoString added in v0.6.5

GoString returns the string representation

func (PutConfigurationRecorderInput) String added in v0.6.5

String returns the string representation

func (*PutConfigurationRecorderInput) Validate added in v1.1.21

func (s *PutConfigurationRecorderInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutConfigurationRecorderOutput

type PutConfigurationRecorderOutput struct {
	// contains filtered or unexported fields
}

func (PutConfigurationRecorderOutput) GoString added in v0.6.5

GoString returns the string representation

func (PutConfigurationRecorderOutput) String added in v0.6.5

String returns the string representation

type PutDeliveryChannelInput

type PutDeliveryChannelInput struct {

	// The configuration delivery channel object that delivers the configuration
	// information to an Amazon S3 bucket, and to an Amazon SNS topic.
	DeliveryChannel *DeliveryChannel `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

The input for the PutDeliveryChannel action.

func (PutDeliveryChannelInput) GoString added in v0.6.5

func (s PutDeliveryChannelInput) GoString() string

GoString returns the string representation

func (PutDeliveryChannelInput) String added in v0.6.5

func (s PutDeliveryChannelInput) String() string

String returns the string representation

func (*PutDeliveryChannelInput) Validate added in v1.1.21

func (s *PutDeliveryChannelInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutDeliveryChannelOutput

type PutDeliveryChannelOutput struct {
	// contains filtered or unexported fields
}

func (PutDeliveryChannelOutput) GoString added in v0.6.5

func (s PutDeliveryChannelOutput) GoString() string

GoString returns the string representation

func (PutDeliveryChannelOutput) String added in v0.6.5

func (s PutDeliveryChannelOutput) String() string

String returns the string representation

type PutEvaluationsInput added in v0.9.13

type PutEvaluationsInput struct {

	// The assessments that the AWS Lambda function performs. Each evaluation identifies
	// an AWS resource and indicates whether it complies with the AWS Config rule
	// that invokes the AWS Lambda function.
	Evaluations []*Evaluation `type:"list"`

	// An encrypted token that associates an evaluation with an AWS Config rule.
	// Identifies the rule and the event that triggered the evaluation
	ResultToken *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (PutEvaluationsInput) GoString added in v0.9.13

func (s PutEvaluationsInput) GoString() string

GoString returns the string representation

func (PutEvaluationsInput) String added in v0.9.13

func (s PutEvaluationsInput) String() string

String returns the string representation

func (*PutEvaluationsInput) Validate added in v1.1.21

func (s *PutEvaluationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutEvaluationsOutput added in v0.9.13

type PutEvaluationsOutput struct {

	// Requests that failed because of a client or server error.
	FailedEvaluations []*Evaluation `type:"list"`
	// contains filtered or unexported fields
}

func (PutEvaluationsOutput) GoString added in v0.9.13

func (s PutEvaluationsOutput) GoString() string

GoString returns the string representation

func (PutEvaluationsOutput) String added in v0.9.13

func (s PutEvaluationsOutput) String() string

String returns the string representation

type RecordingGroup added in v0.6.4

type RecordingGroup struct {

	// Specifies whether AWS Config records configuration changes for every supported
	// type of regional resource.
	//
	// If you set this option to true, when AWS Config adds support for a new type
	// of regional resource, it automatically starts recording resources of that
	// type.
	//
	// If you set this option to true, you cannot enumerate a list of resourceTypes.
	AllSupported *bool `locationName:"allSupported" type:"boolean"`

	// Specifies whether AWS Config includes all supported types of global resources
	// (for example, IAM resources) with the resources that it records.
	//
	// Before you can set this option to true, you must set the allSupported option
	// to true.
	//
	// If you set this option to true, when AWS Config adds support for a new type
	// of global resource, it automatically starts recording resources of that type.
	//
	// The configuration details for any global resource are the same in all regions.
	// To prevent duplicate configuration items, you should consider customizing
	// AWS Config in only one region to record global resources.
	IncludeGlobalResourceTypes *bool `locationName:"includeGlobalResourceTypes" type:"boolean"`

	// A comma-separated list that specifies the types of AWS resources for which
	// AWS Config records configuration changes (for example, AWS::EC2::Instance
	// or AWS::CloudTrail::Trail).
	//
	// Before you can set this option to true, you must set the allSupported option
	// to false.
	//
	// If you set this option to true, when AWS Config adds support for a new type
	// of resource, it will not record resources of that type unless you manually
	// add that type to your recording group.
	//
	// For a list of valid resourceTypes values, see the resourceType Value column
	// in Supported AWS Resource Types (http://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources).
	ResourceTypes []*string `locationName:"resourceTypes" type:"list"`
	// contains filtered or unexported fields
}

Specifies the types of AWS resource for which AWS Config records configuration changes.

In the recording group, you specify whether all supported types or specific types of resources are recorded.

By default, AWS Config records configuration changes for all supported types of regional resources that AWS Config discovers in the region in which it is running. Regional resources are tied to a region and can be used only in that region. Examples of regional resources are EC2 instances and EBS volumes.

You can also have AWS Config record configuration changes for supported types of global resources (for example, IAM resources). Global resources are not tied to an individual region and can be used in all regions.

The configuration details for any global resource are the same in all regions. If you customize AWS Config in multiple regions to record global resources, it will create multiple configuration items each time a global resource changes: one configuration item for each region. These configuration items will contain identical data. To prevent duplicate configuration items, you should consider customizing AWS Config in only one region to record global resources, unless you want the configuration items to be available in multiple regions. If you don't want AWS Config to record all resources, you can specify which types of resources it will record with the resourceTypes parameter.

For a list of supported resource types, see Supported resource types (http://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources).

For more information, see Selecting Which Resources AWS Config Records (http://docs.aws.amazon.com/config/latest/developerguide/select-resources.html).

func (RecordingGroup) GoString added in v0.6.5

func (s RecordingGroup) GoString() string

GoString returns the string representation

func (RecordingGroup) String added in v0.6.5

func (s RecordingGroup) String() string

String returns the string representation

type Relationship

type Relationship struct {

	// The type of relationship with the related resource.
	RelationshipName *string `locationName:"relationshipName" type:"string"`

	// The ID of the related resource (for example, sg-xxxxxx).
	ResourceId *string `locationName:"resourceId" type:"string"`

	// The custom name of the related resource, if available.
	ResourceName *string `locationName:"resourceName" type:"string"`

	// The resource type of the related resource.
	ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"`
	// contains filtered or unexported fields
}

The relationship of the related resource to the main resource.

func (Relationship) GoString added in v0.6.5

func (s Relationship) GoString() string

GoString returns the string representation

func (Relationship) String added in v0.6.5

func (s Relationship) String() string

String returns the string representation

type ResourceIdentifier added in v0.9.5

type ResourceIdentifier struct {

	// The time that the resource was deleted.
	ResourceDeletionTime *time.Time `locationName:"resourceDeletionTime" type:"timestamp" timestampFormat:"unix"`

	// The ID of the resource (for example., sg-xxxxxx).
	ResourceId *string `locationName:"resourceId" type:"string"`

	// The custom name of the resource (if available).
	ResourceName *string `locationName:"resourceName" type:"string"`

	// The type of resource.
	ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"`
	// contains filtered or unexported fields
}

The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.

func (ResourceIdentifier) GoString added in v0.9.5

func (s ResourceIdentifier) GoString() string

GoString returns the string representation

func (ResourceIdentifier) String added in v0.9.5

func (s ResourceIdentifier) String() string

String returns the string representation

type Scope added in v0.9.13

type Scope struct {

	// The IDs of the only AWS resource that you want to trigger an evaluation for
	// the rule. If you specify a resource ID, you must specify one resource type
	// for ComplianceResourceTypes.
	ComplianceResourceId *string `min:"1" type:"string"`

	// The resource types of only those AWS resources that you want to trigger an
	// evaluation for the rule. You can only specify one type if you also specify
	// a resource ID for ComplianceResourceId.
	ComplianceResourceTypes []*string `type:"list"`

	// The tag key that is applied to only those AWS resources that you want you
	// want to trigger an evaluation for the rule.
	TagKey *string `min:"1" type:"string"`

	// The tag value applied to only those AWS resources that you want to trigger
	// an evaluation for the rule. If you specify a value for TagValue, you must
	// also specify a value for TagKey.
	TagValue *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Defines which resources trigger an evaluation for an AWS Config rule. The scope can include one or more resource types, a combination of a tag key and value, or a combination of one resource type and one resource ID. Specify a scope to constrain which resources trigger an evaluation for a rule. Otherwise, evaluations for the rule are triggered when any resource in your recording group changes in configuration.

func (Scope) GoString added in v0.9.13

func (s Scope) GoString() string

GoString returns the string representation

func (Scope) String added in v0.9.13

func (s Scope) String() string

String returns the string representation

func (*Scope) Validate added in v1.1.21

func (s *Scope) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Source added in v0.9.13

type Source struct {

	// Indicates whether AWS or the customer owns and manages the AWS Config rule.
	Owner *string `type:"string" enum:"Owner"`

	// Provides the source and type of the event that causes AWS Config to evaluate
	// your AWS resources.
	SourceDetails []*SourceDetail `type:"list"`

	// For AWS managed Config rules, a pre-defined identifier from a list. To reference
	// the list, see Using AWS Managed Config Rules (http://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_use-managed-rules.html).
	//
	// For customer managed Config rules, the identifier is the Amazon Resource
	// Name (ARN) of the rule's AWS Lambda function.
	SourceIdentifier *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Provides the AWS Config rule owner (AWS or customer), the rule identifier, and the events that trigger the evaluation of your AWS resources.

func (Source) GoString added in v0.9.13

func (s Source) GoString() string

GoString returns the string representation

func (Source) String added in v0.9.13

func (s Source) String() string

String returns the string representation

func (*Source) Validate added in v1.1.21

func (s *Source) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SourceDetail added in v0.9.13

type SourceDetail struct {

	// The source of the event, such as an AWS service, that triggers AWS Config
	// to evaluate your AWS resources.
	EventSource *string `type:"string" enum:"EventSource"`

	// The type of SNS message that triggers AWS Config to run an evaluation. For
	// evaluations that are initiated when AWS Config delivers a configuration item
	// change notification, you must use ConfigurationItemChangeNotification. For
	// evaluations that are initiated when AWS Config delivers a configuration snapshot,
	// you must use ConfigurationSnapshotDeliveryCompleted.
	MessageType *string `type:"string" enum:"MessageType"`
	// contains filtered or unexported fields
}

Provides the source and type of the event that triggers AWS Config to evaluate your AWS resources against a rule.

func (SourceDetail) GoString added in v0.9.13

func (s SourceDetail) GoString() string

GoString returns the string representation

func (SourceDetail) String added in v0.9.13

func (s SourceDetail) String() string

String returns the string representation

type StartConfigurationRecorderInput

type StartConfigurationRecorderInput struct {

	// The name of the recorder object that records each configuration change made
	// to the resources.
	ConfigurationRecorderName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

The input for the StartConfigurationRecorder action.

func (StartConfigurationRecorderInput) GoString added in v0.6.5

GoString returns the string representation

func (StartConfigurationRecorderInput) String added in v0.6.5

String returns the string representation

func (*StartConfigurationRecorderInput) Validate added in v1.1.21

func (s *StartConfigurationRecorderInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartConfigurationRecorderOutput

type StartConfigurationRecorderOutput struct {
	// contains filtered or unexported fields
}

func (StartConfigurationRecorderOutput) GoString added in v0.6.5

GoString returns the string representation

func (StartConfigurationRecorderOutput) String added in v0.6.5

String returns the string representation

type StopConfigurationRecorderInput

type StopConfigurationRecorderInput struct {

	// The name of the recorder object that records each configuration change made
	// to the resources.
	ConfigurationRecorderName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

The input for the StopConfigurationRecorder action.

func (StopConfigurationRecorderInput) GoString added in v0.6.5

GoString returns the string representation

func (StopConfigurationRecorderInput) String added in v0.6.5

String returns the string representation

func (*StopConfigurationRecorderInput) Validate added in v1.1.21

func (s *StopConfigurationRecorderInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopConfigurationRecorderOutput

type StopConfigurationRecorderOutput struct {
	// contains filtered or unexported fields
}

func (StopConfigurationRecorderOutput) GoString added in v0.6.5

GoString returns the string representation

func (StopConfigurationRecorderOutput) String added in v0.6.5

String returns the string representation

Directories

Path Synopsis
Package configserviceiface provides an interface for the AWS Config.
Package configserviceiface provides an interface for the AWS Config.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL