The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Paws::DLM::CreateLifecyclePolicy - Arguments for method CreateLifecyclePolicy on Paws::DLM

DESCRIPTION

This class represents the parameters used for calling the method CreateLifecyclePolicy on the Amazon Data Lifecycle Manager service. Use the attributes of this class as arguments to method CreateLifecyclePolicy.

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

SYNOPSIS

    my $dlm = Paws->service('DLM');
    my $CreateLifecyclePolicyResponse = $dlm->CreateLifecyclePolicy(
      Description      => 'MyPolicyDescription',
      ExecutionRoleArn => 'MyExecutionRoleArn',
      PolicyDetails    => {
        ResourceTypes => [
          'VOLUME', ...    # values: VOLUME
        ],                 # min: 1, max: 1; OPTIONAL
        Schedules => [
          {
            CopyTags   => 1,    # OPTIONAL
            CreateRule => {
              Interval     => 1,                    # min: 1
              IntervalUnit => 'HOURS',              # values: HOURS
              Times        => [ 'MyTime', ... ],    # max: 1; OPTIONAL
            },    # OPTIONAL
            Name       => 'MyScheduleName',    # max: 500; OPTIONAL
            RetainRule => {
              Count => 1,                      # min: 1, max: 1000

            },    # OPTIONAL
            TagsToAdd => [
              {
                Key   => 'MyString',
                Value => 'MyString',

              },
              ...
            ],    # max: 50; OPTIONAL
          },
          ...
        ],        # min: 1, max: 1; OPTIONAL
        TargetTags => [
          {
            Key   => 'MyString',
            Value => 'MyString',

          },
          ...
        ],        # min: 1, max: 50; OPTIONAL
      },
      State => 'ENABLED',

    );

    # Results:
    my $PolicyId = $CreateLifecyclePolicyResponse->PolicyId;

    # Returns a L<Paws::DLM::CreateLifecyclePolicyResponse> 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/dlm/CreateLifecyclePolicy

ATTRIBUTES

REQUIRED Description => Str

A description of the lifecycle policy. The characters ^[0-9A-Za-z _-]+$ are supported.

REQUIRED ExecutionRoleArn => Str

The Amazon Resource Name (ARN) of the IAM role used to run the operations specified by the lifecycle policy.

REQUIRED PolicyDetails => Paws::DLM::PolicyDetails

The configuration details of the lifecycle policy.

Target tags cannot be re-used across lifecycle policies.

REQUIRED State => Str

The desired activation state of the lifecycle policy after creation.

Valid values are: "ENABLED", "DISABLED"

SEE ALSO

This class forms part of Paws, documenting arguments for method CreateLifecyclePolicy in Paws::DLM

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