Show / Hide Table of Contents

Class PolicyArgs

Inheritance
System.Object
InputArgs
ResourceArgs
PolicyArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Iam
Assembly: Pulumi.Aws.dll
Syntax
public sealed class PolicyArgs : ResourceArgs

Constructors

View Source

PolicyArgs()

Declaration
public PolicyArgs()

Properties

View Source

Description

Description of the IAM policy.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the policy. If omitted, this provider will assign a random, unique name.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NamePrefix

Creates a unique name beginning with the specified prefix. Conflicts with name.

Declaration
public Input<string> NamePrefix { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Path

Path in which to create the policy. See IAM Identifiers for more information.

Declaration
public Input<string> Path { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PolicyDocument

The policy document. This is a JSON formatted string.

Declaration
public Input<string> PolicyDocument { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.