CfnMemberMixinProps
- class aws_cdk.mixins_preview.aws_guardduty.mixins.CfnMemberMixinProps(*, detector_id=None, disable_email_notification=None, email=None, member_id=None, message=None, status=None)
Bases:
objectProperties for CfnMemberPropsMixin.
- Parameters:
detector_id (
Optional[str]) – The ID of the detector associated with the GuardDuty service to add the member to.disable_email_notification (
Union[bool,IResolvable,None]) – Specifies whether or not to disable email notification for the member account that you invite.email (
Optional[str]) – The email address associated with the member account.member_id (
Optional[str]) – The AWS account ID of the account to designate as a member.message (
Optional[str]) – The invitation message that you want to send to the accounts that you’re inviting to GuardDuty as members.status (
Optional[str]) – You can use theStatusproperty to update the status of the relationship between the member account and its administrator account. Valid values areCreatedandInvitedwhen using anAWS::GuardDuty::Memberresource. If the value for this property is not provided or set toCreated, a member account is created but not invited. If the value of this property is set toInvited, a member account is created and invited.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_guardduty import mixins as guardduty_mixins cfn_member_mixin_props = guardduty_mixins.CfnMemberMixinProps( detector_id="detectorId", disable_email_notification=False, email="email", member_id="memberId", message="message", status="status" )
Attributes
- detector_id
The ID of the detector associated with the GuardDuty service to add the member to.
- disable_email_notification
Specifies whether or not to disable email notification for the member account that you invite.
- email
The email address associated with the member account.
- member_id
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
Statusproperty to update the status of the relationship between the member account and its administrator account.Valid values are
CreatedandInvitedwhen using anAWS::GuardDuty::Memberresource. If the value for this property is not provided or set toCreated, a member account is created but not invited. If the value of this property is set toInvited, a member account is created and invited.