Interface CfnSegmentDefinition.IAddressDimensionProperty
Object that segments on Customer Profile's address object.
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAddressDimensionProperty
Syntax (vb)
Public Interface IAddressDimensionProperty
Remarks
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.CustomerProfiles;
var addressDimensionProperty = new AddressDimensionProperty {
City = new ProfileDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
},
Country = new ProfileDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
},
County = new ProfileDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
},
PostalCode = new ProfileDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
},
Province = new ProfileDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
},
State = new ProfileDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
}
};
Synopsis
Properties
City | The city belonging to the address. |
Country | The country belonging to the address. |
County | The county belonging to the address. |
Postal |
The postal code belonging to the address. |
Province | The province belonging to the address. |
State | The state belonging to the address. |
Properties
City
The city belonging to the address.
virtual object City { get; }
Property Value
System.
Remarks
Country
The country belonging to the address.
virtual object Country { get; }
Property Value
System.
Remarks
County
The county belonging to the address.
virtual object County { get; }
Property Value
System.
Remarks
PostalCode
The postal code belonging to the address.
virtual object PostalCode { get; }
Property Value
System.
Remarks
Province
The province belonging to the address.
virtual object Province { get; }
Property Value
System.
Remarks
State
The state belonging to the address.
virtual object State { get; }
Property Value
System.