![]() |
![]()
| ![]() |
![]()
NAMEPaws::AppConfig::GetConfiguration - Arguments for method GetConfiguration on Paws::AppConfig DESCRIPTIONThis 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. SYNOPSISmy $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> ATTRIBUTESREQUIRED Application => StrThe application to get. Specify either the application name or the application ID. ClientConfigurationVersion => StrThe 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 => StrA 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 => StrThe configuration to get. Specify either the configuration name or the configuration ID. REQUIRED Environment => StrThe environment to get. Specify either the environment name or the environment ID. SEE ALSOThis class forms part of Paws, documenting arguments for method GetConfiguration in Paws::AppConfig BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|