// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // AWSFailureDomainPlacementApplyConfiguration represents an declarative configuration of the AWSFailureDomainPlacement type for use // with apply. type AWSFailureDomainPlacementApplyConfiguration struct { AvailabilityZone *string `json:"availabilityZone,omitempty"` } // AWSFailureDomainPlacementApplyConfiguration constructs an declarative configuration of the AWSFailureDomainPlacement type for use with // apply. func AWSFailureDomainPlacement() *AWSFailureDomainPlacementApplyConfiguration { return &AWSFailureDomainPlacementApplyConfiguration{} } // WithAvailabilityZone sets the AvailabilityZone field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. // If called multiple times, the AvailabilityZone field is set to the value of the last call. func (b *AWSFailureDomainPlacementApplyConfiguration) WithAvailabilityZone(value string) *AWSFailureDomainPlacementApplyConfiguration { b.AvailabilityZone = &value return b }