Show / Hide Table of Contents

Class CfnUserPropsMixin

Creates a user within the specified identity store.

Inheritance
object
Mixin
CfnUserPropsMixin
Implements
IMixin
Inherited Members
Mixin.IsMixin(object)
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.IdentityStore
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnUserPropsMixin : Mixin, IMixin
Syntax (vb)
Public Class CfnUserPropsMixin Inherits Mixin Implements IMixin
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-user.html

CloudformationResource: AWS::IdentityStore::User

Mixin: true

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.IdentityStore;
             using Amazon.CDK;

             IMergeStrategy mergeStrategy;

             var cfnUserPropsMixin = new CfnUserPropsMixin(new CfnUserMixinProps {
                 Addresses = new [] { new AddressesItemsProperty {
                     Country = "country",
                     Formatted = "formatted",
                     Locality = "locality",
                     PostalCode = "postalCode",
                     Primary = false,
                     Region = "region",
                     StreetAddress = "streetAddress",
                     Type = "type"
                 } },
                 Birthdate = "birthdate",
                 DisplayName = "displayName",
                 Emails = new [] { new EmailsItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 IdentityStoreId = "identityStoreId",
                 Locale = "locale",
                 Name = new NameProperty {
                     FamilyName = "familyName",
                     Formatted = "formatted",
                     GivenName = "givenName",
                     HonorificPrefix = "honorificPrefix",
                     HonorificSuffix = "honorificSuffix",
                     MiddleName = "middleName"
                 },
                 NickName = "nickName",
                 PhoneNumbers = new [] { new PhoneNumbersItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 Photos = new [] { new PhotosItemsProperty {
                     Display = "display",
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 PreferredLanguage = "preferredLanguage",
                 ProfileUrl = "profileUrl",
                 Roles = new [] { new RolesItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 Timezone = "timezone",
                 Title = "title",
                 UserName = "userName",
                 UserType = "userType",
                 Website = "website"
             }, new CfnPropertyMixinOptions {
                 Strategy = mergeStrategy
             });

Synopsis

Constructors

CfnUserPropsMixin(ICfnUserMixinProps, ICfnPropertyMixinOptions?)

Create a mixin to apply properties to AWS::IdentityStore::User.

Properties

CFN_PROPERTY_KEYS

Creates a user within the specified identity store.

Props

Creates a user within the specified identity store.

Strategy

Creates a user within the specified identity store.

Methods

ApplyTo(IConstruct)

Apply the mixin properties to the construct.

Supports(IConstruct)

Check if this mixin supports the given construct.

Constructors

CfnUserPropsMixin(ICfnUserMixinProps, ICfnPropertyMixinOptions?)

Create a mixin to apply properties to AWS::IdentityStore::User.

public CfnUserPropsMixin(ICfnUserMixinProps props, ICfnPropertyMixinOptions? options = null)
Parameters
props ICfnUserMixinProps

L1 properties to apply.

options ICfnPropertyMixinOptions

Mixin options.

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-user.html

CloudformationResource: AWS::IdentityStore::User

Mixin: true

ExampleMetadata: fixture=_generated

Properties

CFN_PROPERTY_KEYS

Creates a user within the specified identity store.

protected static string[] CFN_PROPERTY_KEYS { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-user.html

CloudformationResource: AWS::IdentityStore::User

Mixin: true

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.IdentityStore;
             using Amazon.CDK;

             IMergeStrategy mergeStrategy;

             var cfnUserPropsMixin = new CfnUserPropsMixin(new CfnUserMixinProps {
                 Addresses = new [] { new AddressesItemsProperty {
                     Country = "country",
                     Formatted = "formatted",
                     Locality = "locality",
                     PostalCode = "postalCode",
                     Primary = false,
                     Region = "region",
                     StreetAddress = "streetAddress",
                     Type = "type"
                 } },
                 Birthdate = "birthdate",
                 DisplayName = "displayName",
                 Emails = new [] { new EmailsItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 IdentityStoreId = "identityStoreId",
                 Locale = "locale",
                 Name = new NameProperty {
                     FamilyName = "familyName",
                     Formatted = "formatted",
                     GivenName = "givenName",
                     HonorificPrefix = "honorificPrefix",
                     HonorificSuffix = "honorificSuffix",
                     MiddleName = "middleName"
                 },
                 NickName = "nickName",
                 PhoneNumbers = new [] { new PhoneNumbersItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 Photos = new [] { new PhotosItemsProperty {
                     Display = "display",
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 PreferredLanguage = "preferredLanguage",
                 ProfileUrl = "profileUrl",
                 Roles = new [] { new RolesItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 Timezone = "timezone",
                 Title = "title",
                 UserName = "userName",
                 UserType = "userType",
                 Website = "website"
             }, new CfnPropertyMixinOptions {
                 Strategy = mergeStrategy
             });

Props

Creates a user within the specified identity store.

protected virtual ICfnUserMixinProps Props { get; }
Property Value

ICfnUserMixinProps

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-user.html

CloudformationResource: AWS::IdentityStore::User

Mixin: true

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.IdentityStore;
             using Amazon.CDK;

             IMergeStrategy mergeStrategy;

             var cfnUserPropsMixin = new CfnUserPropsMixin(new CfnUserMixinProps {
                 Addresses = new [] { new AddressesItemsProperty {
                     Country = "country",
                     Formatted = "formatted",
                     Locality = "locality",
                     PostalCode = "postalCode",
                     Primary = false,
                     Region = "region",
                     StreetAddress = "streetAddress",
                     Type = "type"
                 } },
                 Birthdate = "birthdate",
                 DisplayName = "displayName",
                 Emails = new [] { new EmailsItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 IdentityStoreId = "identityStoreId",
                 Locale = "locale",
                 Name = new NameProperty {
                     FamilyName = "familyName",
                     Formatted = "formatted",
                     GivenName = "givenName",
                     HonorificPrefix = "honorificPrefix",
                     HonorificSuffix = "honorificSuffix",
                     MiddleName = "middleName"
                 },
                 NickName = "nickName",
                 PhoneNumbers = new [] { new PhoneNumbersItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 Photos = new [] { new PhotosItemsProperty {
                     Display = "display",
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 PreferredLanguage = "preferredLanguage",
                 ProfileUrl = "profileUrl",
                 Roles = new [] { new RolesItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 Timezone = "timezone",
                 Title = "title",
                 UserName = "userName",
                 UserType = "userType",
                 Website = "website"
             }, new CfnPropertyMixinOptions {
                 Strategy = mergeStrategy
             });

Strategy

Creates a user within the specified identity store.

protected virtual IMergeStrategy Strategy { get; }
Property Value

IMergeStrategy

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-user.html

CloudformationResource: AWS::IdentityStore::User

Mixin: true

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.IdentityStore;
             using Amazon.CDK;

             IMergeStrategy mergeStrategy;

             var cfnUserPropsMixin = new CfnUserPropsMixin(new CfnUserMixinProps {
                 Addresses = new [] { new AddressesItemsProperty {
                     Country = "country",
                     Formatted = "formatted",
                     Locality = "locality",
                     PostalCode = "postalCode",
                     Primary = false,
                     Region = "region",
                     StreetAddress = "streetAddress",
                     Type = "type"
                 } },
                 Birthdate = "birthdate",
                 DisplayName = "displayName",
                 Emails = new [] { new EmailsItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 IdentityStoreId = "identityStoreId",
                 Locale = "locale",
                 Name = new NameProperty {
                     FamilyName = "familyName",
                     Formatted = "formatted",
                     GivenName = "givenName",
                     HonorificPrefix = "honorificPrefix",
                     HonorificSuffix = "honorificSuffix",
                     MiddleName = "middleName"
                 },
                 NickName = "nickName",
                 PhoneNumbers = new [] { new PhoneNumbersItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 Photos = new [] { new PhotosItemsProperty {
                     Display = "display",
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 PreferredLanguage = "preferredLanguage",
                 ProfileUrl = "profileUrl",
                 Roles = new [] { new RolesItemsProperty {
                     Primary = false,
                     Type = "type",
                     Value = "value"
                 } },
                 Timezone = "timezone",
                 Title = "title",
                 UserName = "userName",
                 UserType = "userType",
                 Website = "website"
             }, new CfnPropertyMixinOptions {
                 Strategy = mergeStrategy
             });

Methods

ApplyTo(IConstruct)

Apply the mixin properties to the construct.

public override void ApplyTo(IConstruct construct)
Parameters
construct IConstruct
Overrides
Mixin.ApplyTo(IConstruct)
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-user.html

CloudformationResource: AWS::IdentityStore::User

Mixin: true

ExampleMetadata: fixture=_generated

Supports(IConstruct)

Check if this mixin supports the given construct.

public override bool Supports(IConstruct construct)
Parameters
construct IConstruct
Returns

bool

Overrides
Mixin.Supports(IConstruct)
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-user.html

CloudformationResource: AWS::IdentityStore::User

Mixin: true

ExampleMetadata: fixture=_generated

Implements

Constructs.IMixin
Back to top Generated by DocFX