CfnWorkspaceIpGroupMixinProps
- class aws_cdk.cfn_property_mixins.aws_workspaces.CfnWorkspaceIpGroupMixinProps(*, group_desc=None, group_name=None, tags=None, user_rules=None)
Bases:
objectProperties for CfnWorkspaceIpGroupPropsMixin.
- Parameters:
group_desc (
Optional[str]) – The description of the group.group_name (
Optional[str]) – The name of the group.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags for the IP access control group.user_rules (
Union[IResolvable,Sequence[Union[IResolvable,IpRuleItemProperty,Dict[str,Any]]],None]) – The rules for the IP access control group.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_workspaces as workspaces cfn_workspace_ip_group_mixin_props = workspaces.CfnWorkspaceIpGroupMixinProps( group_desc="groupDesc", group_name="groupName", tags=[CfnTag( key="key", value="value" )], user_rules=[workspaces.CfnWorkspaceIpGroupPropsMixin.IpRuleItemProperty( ip_rule="ipRule", rule_desc="ruleDesc" )] )
Attributes
- group_desc
The description of the group.
- group_name
The name of the group.
- tags
The tags for the IP access control group.
- user_rules
The rules for the IP access control group.