Show / Hide Table of Contents

Class AccountArgs

Inheritance
System.Object
InputArgs
ResourceArgs
AccountArgs
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.Organizations
Assembly: Pulumi.Aws.dll
Syntax
public sealed class AccountArgs : ResourceArgs

Constructors

View Source

AccountArgs()

Declaration
public AccountArgs()

Properties

View Source

Email

The email address of the owner to assign to the new member account. This email address must not already be associated with another AWS account.

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

IamUserAccessToBilling

If set to ALLOW, the new account enables IAM users to access account billing information if they have the required permissions. If set to DENY, then only the root user of the new account can access account billing information.

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

Name

A friendly name for the member account.

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

ParentId

Parent Organizational Unit ID or Root ID for the account. Defaults to the Organization default Root ID. A configuration must be present for this argument to perform drift detection.

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

RoleName

The name of an IAM role that Organizations automatically preconfigures in the new member account. This role trusts the master account, allowing users in the master account to assume the role, as permitted by the master account administrator. The role has administrator permissions in the new member account. The Organizations API provides no method for reading this information after account creation, so this provider cannot perform drift detection on its value and will always show a difference for a configured value after import unless ignoreChanges is used.

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

Tags

Key-value mapping of resource tags.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.