Class: Aws::ECR::Types::StartLifecyclePolicyPreviewRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::StartLifecyclePolicyPreviewRequest
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
Note:
When making an API call, you may pass StartLifecyclePolicyPreviewRequest data as a hash:
{
registry_id: "RegistryId",
repository_name: "RepositoryName", # required
lifecycle_policy_text: "LifecyclePolicyText",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lifecycle_policy_text ⇒ String
The policy to be evaluated against.
-
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the repository.
-
#repository_name ⇒ String
The name of the repository to be evaluated.
Instance Attribute Details
#lifecycle_policy_text ⇒ String
The policy to be evaluated against. If you do not specify a policy, the current policy for the repository is used.
4035 4036 4037 4038 4039 4040 4041 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 4035 class StartLifecyclePolicyPreviewRequest < Struct.new( :registry_id, :repository_name, :lifecycle_policy_text) SENSITIVE = [] include Aws::Structure end |
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the repository. If you do not specify a registry, the default registry is assumed.
4035 4036 4037 4038 4039 4040 4041 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 4035 class StartLifecyclePolicyPreviewRequest < Struct.new( :registry_id, :repository_name, :lifecycle_policy_text) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository to be evaluated.
4035 4036 4037 4038 4039 4040 4041 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 4035 class StartLifecyclePolicyPreviewRequest < Struct.new( :registry_id, :repository_name, :lifecycle_policy_text) SENSITIVE = [] include Aws::Structure end |