The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::AppConfig::GetConfiguration - Arguments for method GetConfiguration on Paws::AppConfig

DESCRIPTION

This class represents the parameters used for calling the method GetConfiguration on the Amazon AppConfig service. Use the attributes of this class as arguments to method GetConfiguration.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetConfiguration.

SYNOPSIS

    my $appconfig = Paws->service('AppConfig');
    my $Configuration = $appconfig->GetConfiguration(
      Application                => 'MyStringWithLengthBetween1And64',
      ClientId                   => 'MyStringWithLengthBetween1And64',
      Configuration              => 'MyStringWithLengthBetween1And64',
      Environment                => 'MyStringWithLengthBetween1And64',
      ClientConfigurationVersion => 'MyVersion',                      # OPTIONAL
    );

    # Results:
    my $ConfigurationVersion = $Configuration->ConfigurationVersion;
    my $Content              = $Configuration->Content;
    my $ContentType          = $Configuration->ContentType;

    # Returns a L<Paws::AppConfig::Configuration> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/appconfig/GetConfiguration

ATTRIBUTES

REQUIRED Application => Str

The application to get. Specify either the application name or the application ID.

ClientConfigurationVersion => Str

The configuration version returned in the most recent GetConfiguration response.

AWS AppConfig uses the value of the ClientConfigurationVersion parameter to identify the configuration version on your clients. If you don’t send ClientConfigurationVersion with each call to GetConfiguration, your clients receive the current configuration. You are charged each time your clients receive a configuration.

To avoid excess charges, we recommend that you include the ClientConfigurationVersion value with every call to GetConfiguration. This value must be saved on your client. Subsequent calls to GetConfiguration must pass this value by using the ClientConfigurationVersion parameter.

For more information about working with configurations, see Retrieving the Configuration (https://docs.aws.amazon.com/systems-manager/latest/userguide/appconfig-retrieving-the-configuration.html) in the AWS AppConfig User Guide.

REQUIRED ClientId => Str

A unique ID to identify the client for the configuration. This ID enables AppConfig to deploy the configuration in intervals, as defined in the deployment strategy.

REQUIRED Configuration => Str

The configuration to get. Specify either the configuration name or the configuration ID.

REQUIRED Environment => Str

The environment to get. Specify either the environment name or the environment ID.

SEE ALSO

This class forms part of Paws, documenting arguments for method GetConfiguration in Paws::AppConfig

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues