Class: Aws::ACMPCA::Types::PutPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::PutPolicyRequest
- Defined in:
- gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb
Overview
When making an API call, you may pass PutPolicyRequest data as a hash:
{
resource_arn: "Arn", # required
policy: "AWSPolicy", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#policy ⇒ String
The path and file name of a JSON-formatted IAM policy to attach to the specified private CA resource.
-
#resource_arn ⇒ String
The Amazon Resource Number (ARN) of the private CA to associate with the policy.
Instance Attribute Details
#policy ⇒ String
The path and file name of a JSON-formatted IAM policy to attach to
the specified private CA resource. If this policy does not contain
all required statements or if it includes any statement that is not
allowed, the PutPolicy
action returns an InvalidPolicyException
.
For information about IAM policy and statement structure, see
Overview of JSON Policies.
3042 3043 3044 3045 3046 3047 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 3042 class PutPolicyRequest < Struct.new( :resource_arn, :policy) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
The Amazon Resource Number (ARN) of the private CA to associate with the policy. The ARN of the CA can be found by calling the ListCertificateAuthorities action.
3042 3043 3044 3045 3046 3047 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 3042 class PutPolicyRequest < Struct.new( :resource_arn, :policy) SENSITIVE = [] include Aws::Structure end |