Show / Hide Table of Contents

Class CfnMemberMixinProps

Properties for CfnMemberPropsMixin.

Inheritance
object
CfnMemberMixinProps
Implements
ICfnMemberMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnMemberMixinProps : ICfnMemberMixinProps
Syntax (vb)
Public Class CfnMemberMixinProps Implements ICfnMemberMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.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.Mixins.Preview.AWS.GuardDuty.Mixins;

             var cfnMemberMixinProps = new CfnMemberMixinProps {
                 DetectorId = "detectorId",
                 DisableEmailNotification = false,
                 Email = "email",
                 MemberId = "memberId",
                 Message = "message",
                 Status = "status"
             };

Synopsis

Constructors

CfnMemberMixinProps()

Properties for CfnMemberPropsMixin.

Properties

DetectorId

The ID of the detector associated with the GuardDuty service to add the member to.

DisableEmailNotification

Specifies whether or not to disable email notification for the member account that you invite.

Email

The email address associated with the member account.

MemberId

The AWS account ID of the account to designate as a member.

Message

The invitation message that you want to send to the accounts that you're inviting to GuardDuty as members.

Status

You can use the Status property to update the status of the relationship between the member account and its administrator account.

Constructors

CfnMemberMixinProps()

Properties for CfnMemberPropsMixin.

public CfnMemberMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.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.Mixins.Preview.AWS.GuardDuty.Mixins;

             var cfnMemberMixinProps = new CfnMemberMixinProps {
                 DetectorId = "detectorId",
                 DisableEmailNotification = false,
                 Email = "email",
                 MemberId = "memberId",
                 Message = "message",
                 Status = "status"
             };

Properties

DetectorId

The ID of the detector associated with the GuardDuty service to add the member to.

public string? DetectorId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-detectorid

DisableEmailNotification

Specifies whether or not to disable email notification for the member account that you invite.

public object? DisableEmailNotification { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-disableemailnotification

Type union: either bool or IResolvable

Email

The email address associated with the member account.

public string? Email { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-email

MemberId

The AWS account ID of the account to designate as a member.

public string? MemberId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-memberid

Message

The invitation message that you want to send to the accounts that you're inviting to GuardDuty as members.

public string? Message { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-message

Status

You can use the Status property to update the status of the relationship between the member account and its administrator account.

public string? Status { get; set; }
Property Value

string

Remarks

Valid values are Created and Invited when using an AWS::GuardDuty::Member resource. If the value for this property is not provided or set to Created , a member account is created but not invited. If the value of this property is set to Invited , a member account is created and invited.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#cfn-guardduty-member-status

Implements

ICfnMemberMixinProps
Back to top Generated by DocFX