![]() |
![]()
| ![]() |
![]()
NAMEPaws::DLM::GetLifecyclePolicies - Arguments for method GetLifecyclePolicies on Paws::DLM DESCRIPTIONThis class represents the parameters used for calling the method GetLifecyclePolicies on the Amazon Data Lifecycle Manager service. Use the attributes of this class as arguments to method GetLifecyclePolicies. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetLifecyclePolicies. SYNOPSISmy $dlm = Paws->service('DLM'); my $GetLifecyclePoliciesResponse = $dlm->GetLifecyclePolicies( PolicyIds => [ 'MyPolicyId', ... # max: 64 ], # OPTIONAL ResourceTypes => [ 'VOLUME', ... # values: VOLUME, INSTANCE ], # OPTIONAL State => 'ENABLED', # OPTIONAL TagsToAdd => [ 'MyTagFilter', ... # max: 256 ], # OPTIONAL TargetTags => [ 'MyTagFilter', ... # max: 256 ], # OPTIONAL ); # Results: my $Policies = $GetLifecyclePoliciesResponse->Policies; # Returns a L<Paws::DLM::GetLifecyclePoliciesResponse> 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/GetLifecyclePolicies> ATTRIBUTESPolicyIds => ArrayRef[Str|Undef]The identifiers of the data lifecycle policies. ResourceTypes => ArrayRef[Str|Undef]The resource type. State => StrThe activation state. Valid values are: "ENABLED", "DISABLED", "ERROR" TagsToAdd => ArrayRef[Str|Undef]The tags to add to objects created by the policy. Tags are strings in the format "key=value". These user-defined tags are added in addition to the AWS-added lifecycle tags. TargetTags => ArrayRef[Str|Undef]The target tag for a policy. Tags are strings in the format "key=value". SEE ALSOThis class forms part of Paws, documenting arguments for method GetLifecyclePolicies in Paws::DLM 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>
|