Amazon.ConfigService.AmazonConfigServiceClient.PutConfigurationRecorder C# (CSharp) Method

PutConfigurationRecorder() public method

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 region in your account.

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

/// You have provided a configuration recorder name that is not valid. /// /// AWS Config throws an exception if the recording group does not contain a valid list /// of resource types. Invalid values could also be incorrectly formatted. /// /// You have provided a null or empty role ARN. /// /// You have reached the limit on the number of recorders you can create. ///
public PutConfigurationRecorder ( PutConfigurationRecorderRequest request ) : PutConfigurationRecorderResponse
request Amazon.ConfigService.Model.PutConfigurationRecorderRequest Container for the necessary parameters to execute the PutConfigurationRecorder service method.
return PutConfigurationRecorderResponse
        public PutConfigurationRecorderResponse PutConfigurationRecorder(PutConfigurationRecorderRequest request)
        {
            var marshaller = new PutConfigurationRecorderRequestMarshaller();
            var unmarshaller = PutConfigurationRecorderResponseUnmarshaller.Instance;

            return Invoke<PutConfigurationRecorderRequest,PutConfigurationRecorderResponse>(request, marshaller, unmarshaller);
        }
AmazonConfigServiceClient