Show / Hide Table of Contents

Class CfnPolicyProps

Properties for defining a CfnPolicy.

Inheritance
System.Object
CfnPolicyProps
Implements
ICfnPolicyProps
Namespace: Amazon.CDK.AWS.IAM
Assembly: Amazon.CDK.AWS.IAM.dll
Syntax (csharp)
public class CfnPolicyProps : Object, ICfnPolicyProps
Syntax (vb)
Public Class CfnPolicyProps
    Inherits Object
    Implements ICfnPolicyProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.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.IAM;

var policyDocument;

var cfnPolicyProps = new CfnPolicyProps {
    PolicyDocument = policyDocument,
    PolicyName = "policyName",

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

Synopsis

Constructors

CfnPolicyProps()

Properties

Groups

The name of the group to associate the policy with.

PolicyDocument

The policy document.

PolicyName

The name of the policy document.

Roles

The name of the role to associate the policy with.

Users

The name of the user to associate the policy with.

Constructors

CfnPolicyProps()

public CfnPolicyProps()

Properties

Groups

The name of the group to associate the policy with.

public string[] Groups { get; set; }
Property Value

System.String[]

Remarks

This parameter allows (through its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-groups

PolicyDocument

The policy document.

public object PolicyDocument { get; set; }
Property Value

System.Object

Remarks

You must provide policies in JSON format in IAM. However, for AWS CloudFormation templates formatted in YAML, you can provide the policy in JSON or YAML format. AWS CloudFormation always converts a YAML policy to JSON format before submitting it to IAM.

The regex pattern used to validate this parameter is a string of characters consisting of the following:

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policydocument

    PolicyName

    The name of the policy document.

    public string PolicyName { get; set; }
    Property Value

    System.String

    Remarks

    This parameter allows (through its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-policyname

    Roles

    The name of the role to associate the policy with.

    public string[] Roles { get; set; }
    Property Value

    System.String[]

    Remarks

    This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

    If an external policy (such as AWS::IAM::Policy or AWS::IAM::ManagedPolicy ) has a Ref to a role and if a resource (such as AWS::ECS::Service ) also has a Ref to the same role, add a DependsOn attribute to the resource to make the resource depend on the external policy. This dependency ensures that the role's policy is available throughout the resource's lifecycle. For example, when you delete a stack with an AWS::ECS::Service resource, the DependsOn attribute ensures that AWS CloudFormation deletes the AWS::ECS::Service resource before deleting its role's policy.

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-roles

    Users

    The name of the user to associate the policy with.

    public string[] Users { get; set; }
    Property Value

    System.String[]

    Remarks

    This parameter allows (through its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html#cfn-iam-policy-users

    Implements

    ICfnPolicyProps
    Back to top Generated by DocFX