Class CfnTenantProps
Properties for defining a CfnTenant.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTenantProps : ICfnTenantProps
Syntax (vb)
Public Class CfnTenantProps Implements ICfnTenantProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.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.AWS.SES;
var cfnTenantProps = new CfnTenantProps {
TenantName = "tenantName",
// the properties below are optional
ResourceAssociations = new [] { new ResourceAssociationProperty {
ResourceArn = "resourceArn"
} },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnTenantProps() | Properties for defining a |
Properties
| ResourceAssociations | The list of resources to associate with the tenant. |
| Tags | The tags (keys and values) associated with the tenant. |
| TenantName | The name of the tenant. |
Constructors
CfnTenantProps()
Properties for defining a CfnTenant.
public CfnTenantProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.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.AWS.SES;
var cfnTenantProps = new CfnTenantProps {
TenantName = "tenantName",
// the properties below are optional
ResourceAssociations = new [] { new ResourceAssociationProperty {
ResourceArn = "resourceArn"
} },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
ResourceAssociations
The list of resources to associate with the tenant.
public object? ResourceAssociations { get; set; }
Property Value
Remarks
Tags
The tags (keys and values) associated with the tenant.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
TenantName
The name of the tenant.
public string TenantName { get; set; }