Show / Hide Table of Contents

Interface CfnBudgetsAction.IIamActionDefinitionProperty

The AWS Identity and Access Management ( IAM ) action definition details.

Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnBudgetsAction.IIamActionDefinitionProperty
Syntax (vb)
Public Interface CfnBudgetsAction.IIamActionDefinitionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budgetsaction-iamactiondefinition.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Budgets;

             var iamActionDefinitionProperty = new IamActionDefinitionProperty {
                 PolicyArn = "policyArn",

                 // the properties below are optional
                 Groups = new [] { "groups" },
                 Roles = new [] { "roles" },
                 Users = new [] { "users" }
             };

Synopsis

Properties

Groups

A list of groups to be attached.

PolicyArn

The Amazon Resource Name (ARN) of the policy to be attached.

Roles

A list of roles to be attached.

Users

A list of users to be attached.

Properties

Groups

A list of groups to be attached.

string[]? Groups { get; }
Property Value

string[]

Remarks

There must be at least one group.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budgetsaction-iamactiondefinition.html#cfn-budgets-budgetsaction-iamactiondefinition-groups

PolicyArn

The Amazon Resource Name (ARN) of the policy to be attached.

string PolicyArn { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budgetsaction-iamactiondefinition.html#cfn-budgets-budgetsaction-iamactiondefinition-policyarn

Roles

A list of roles to be attached.

string[]? Roles { get; }
Property Value

string[]

Remarks

There must be at least one role.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budgetsaction-iamactiondefinition.html#cfn-budgets-budgetsaction-iamactiondefinition-roles

Users

A list of users to be attached.

string[]? Users { get; }
Property Value

string[]

Remarks

There must be at least one user.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budgetsaction-iamactiondefinition.html#cfn-budgets-budgetsaction-iamactiondefinition-users

Back to top Generated by DocFX