ResourcePolicyState constructor

const ResourcePolicyState({
  1. Input<String?>? policy,
  2. Input<String?>? region,
  3. Input<String?>? resourceArn,
})

Creates a new ResourcePolicyState. policy The policy to create or update. For example, the following policy grants a user authorization to restore a snapshot. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. resourceArn ARN of the account to create or update a resource policy for.

Implementation

const ResourcePolicyState({
  this.policy,
  this.region,
  this.resourceArn,
});