CfnTenantMixinProps
- class aws_cdk.mixins_preview.aws_ses.mixins.CfnTenantMixinProps(*, resource_associations=None, tags=None, tenant_name=None)
Bases:
objectProperties for CfnTenantPropsMixin.
- Parameters:
resource_associations (
Union[IResolvable,Sequence[Union[IResolvable,ResourceAssociationProperty,Dict[str,Any]]],None]) – The list of resources to associate with the tenant.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags (keys and values) associated with the tenant.tenant_name (
Optional[str]) – The name of the tenant.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html
- 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.mixins_preview.aws_ses import mixins as ses_mixins cfn_tenant_mixin_props = ses_mixins.CfnTenantMixinProps( resource_associations=[ses_mixins.CfnTenantPropsMixin.ResourceAssociationProperty( resource_arn="resourceArn" )], tags=[CfnTag( key="key", value="value" )], tenant_name="tenantName" )
Attributes
- resource_associations
The list of resources to associate with the tenant.
- tags
The tags (keys and values) associated with the tenant.
- tenant_name
The name of the tenant.