Show / Hide Table of Contents

Class CfnPolicyPropsMixin.IEMapProperty

Specifies the AWS account IDs and AWS Organizations organizational units (OUs) to include in or exclude from the policy.

Inheritance
object
CfnPolicyPropsMixin.IEMapProperty
Implements
CfnPolicyPropsMixin.IIEMapProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.FMS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPolicyPropsMixin.IEMapProperty : CfnPolicyPropsMixin.IIEMapProperty
Syntax (vb)
Public Class CfnPolicyPropsMixin.IEMapProperty Implements CfnPolicyPropsMixin.IIEMapProperty
Remarks

Specifying an OU is the equivalent of specifying all accounts in the OU and in any of its child OUs, including any child OUs and accounts that are added at a later time.

This is used for the policy's IncludeMap and ExcludeMap .

You can specify account IDs, OUs, or a combination:

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fms-policy-iemap.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.CfnPropertyMixins.AWS.FMS;
    
                 var iEMapProperty = new Dictionary<string, string[]?> {
                     { "account", new [] { "account" } },
                     { "orgunit", new [] { "orgunit" } }
                 };

    Synopsis

    Constructors

    IEMapProperty()

    Specifies the AWS account IDs and AWS Organizations organizational units (OUs) to include in or exclude from the policy.

    Properties

    Account

    The account list for the map.

    Orgunit

    The organizational unit list for the map.

    Constructors

    IEMapProperty()

    Specifies the AWS account IDs and AWS Organizations organizational units (OUs) to include in or exclude from the policy.

    public IEMapProperty()
    Remarks

    Specifying an OU is the equivalent of specifying all accounts in the OU and in any of its child OUs, including any child OUs and accounts that are added at a later time.

    This is used for the policy's IncludeMap and ExcludeMap .

    You can specify account IDs, OUs, or a combination:

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fms-policy-iemap.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.CfnPropertyMixins.AWS.FMS;
      
                   var iEMapProperty = new Dictionary<string, string[]?> {
                       { "account", new [] { "account" } },
                       { "orgunit", new [] { "orgunit" } }
                   };

      Properties

      Account

      The account list for the map.

      public string[]? Account { get; set; }
      Property Value

      string[]

      Remarks

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fms-policy-iemap.html#cfn-fms-policy-iemap-account

      Orgunit

      The organizational unit list for the map.

      public string[]? Orgunit { get; set; }
      Property Value

      string[]

      Remarks

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fms-policy-iemap.html#cfn-fms-policy-iemap-orgunit

      Implements

      CfnPolicyPropsMixin.IIEMapProperty
      Back to top Generated by DocFX