|
NAMEPaws::Config - Perl Interface to AWS AWS ConfigSYNOPSISuse Paws; my $obj = Paws->service('Config')->new; my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); DESCRIPTIONAWS ConfigAWS 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. 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. 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? in the AWS Config Developer Guide. METHODSDeleteDeliveryChannel(DeliveryChannelName => Str)Each argument is described in detail in: Paws::Config::DeleteDeliveryChannelReturns: nothing 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. DeliverConfigSnapshot(deliveryChannelName => Str)Each argument is described in detail in: Paws::Config::DeliverConfigSnapshotReturns: a Paws::Config::DeliverConfigSnapshotResponse instance 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.
DescribeConfigurationRecorders([ConfigurationRecorderNames => ArrayRef[Str]])Each argument is described in detail in: Paws::Config::DescribeConfigurationRecordersReturns: a Paws::Config::DescribeConfigurationRecordersResponse instance 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. DescribeConfigurationRecorderStatus([ConfigurationRecorderNames => ArrayRef[Str]])Each argument is described in detail in: Paws::Config::DescribeConfigurationRecorderStatusReturns: a Paws::Config::DescribeConfigurationRecorderStatusResponse instance 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. DescribeDeliveryChannels([DeliveryChannelNames => ArrayRef[Str]])Each argument is described in detail in: Paws::Config::DescribeDeliveryChannelsReturns: a Paws::Config::DescribeDeliveryChannelsResponse instance 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. DescribeDeliveryChannelStatus([DeliveryChannelNames => ArrayRef[Str]])Each argument is described in detail in: Paws::Config::DescribeDeliveryChannelStatusReturns: a Paws::Config::DescribeDeliveryChannelStatusResponse instance 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. GetResourceConfigHistory(resourceId => Str, resourceType => Str, [chronologicalOrder => Str, earlierTime => Str, laterTime => Str, limit => Int, nextToken => Str])Each argument is described in detail in: Paws::Config::GetResourceConfigHistoryReturns: a Paws::Config::GetResourceConfigHistoryResponse instance 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. You can specify a "limit" on the number of results returned on the page. If a limit is specified, a "nextToken" is returned as part of the result that you can use to continue this request. 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" . PutConfigurationRecorder(ConfigurationRecorder => Paws::Config::ConfigurationRecorder)Each argument is described in detail in: Paws::Config::PutConfigurationRecorderReturns: nothing 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. PutDeliveryChannel(DeliveryChannel => Paws::Config::DeliveryChannel)Each argument is described in detail in: Paws::Config::PutDeliveryChannelReturns: nothing 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. StartConfigurationRecorder(ConfigurationRecorderName => Str)Each argument is described in detail in: Paws::Config::StartConfigurationRecorderReturns: nothing 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. StopConfigurationRecorder(ConfigurationRecorderName => Str)Each argument is described in detail in: Paws::Config::StopConfigurationRecorderReturns: nothing Stops recording configurations of the AWS resources you have selected to record in your AWS account. SEE ALSOThis service class forms part of PawsBUGS and CONTRIBUTIONSThe source code is located here: https://github.com/pplu/aws-sdk-perlPlease report bugs to: https://github.com/pplu/aws-sdk-perl/issues
Visit the GSP FreeBSD Man Page Interface. |