Show / Hide Table of Contents

Class RoleState

Inheritance
System.Object
InputArgs
ResourceArgs
RoleState
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 RoleState : ResourceArgs

Constructors

View Source

RoleState()

Declaration
public RoleState()

Properties

View Source

Arn

The Amazon Resource Name (ARN) specifying the role.

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

AssumeRolePolicy

The policy that grants an entity permission to assume the role.

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

CreateDate

The creation date of the IAM role.

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

Description

The description of the role.

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

ForceDetachPolicies

Specifies to force detaching any policies the role has before destroying it. Defaults to false.

Declaration
public Input<bool> ForceDetachPolicies { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

MaxSessionDuration

The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default maximum of one hour is applied. This setting can have a value from 1 hour to 12 hours.

Declaration
public Input<int> MaxSessionDuration { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Name

The name of the role. 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

The path to the role. See IAM Identifiers for more information.

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

PermissionsBoundary

The ARN of the policy that is used to set the permissions boundary for the role.

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

Tags

Key-value map of tags for the IAM role

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

UniqueId

The stable and unique string identifying the role.

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