Documentation ¶
Index ¶
- func CfnFHIRDatastore_CFN_RESOURCE_TYPE_NAME() *string
- func CfnFHIRDatastore_IsCfnElement(x interface{}) *bool
- func CfnFHIRDatastore_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnFHIRDatastore_IsConstruct(x interface{}) *bool
- func NewCfnFHIRDatastore_Override(c CfnFHIRDatastore, scope constructs.Construct, id *string, ...)
- type CfnFHIRDatastore
- type CfnFHIRDatastoreProps
- type CfnFHIRDatastore_KmsEncryptionConfigProperty
- type CfnFHIRDatastore_PreloadDataConfigProperty
- type CfnFHIRDatastore_SseConfigurationProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnFHIRDatastore_CFN_RESOURCE_TYPE_NAME ¶
func CfnFHIRDatastore_CFN_RESOURCE_TYPE_NAME() *string
func CfnFHIRDatastore_IsCfnElement ¶
func CfnFHIRDatastore_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnFHIRDatastore_IsCfnResource ¶
func CfnFHIRDatastore_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnFHIRDatastore_IsConstruct ¶
func CfnFHIRDatastore_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewCfnFHIRDatastore_Override ¶
func NewCfnFHIRDatastore_Override(c CfnFHIRDatastore, scope constructs.Construct, id *string, props *CfnFHIRDatastoreProps)
Create a new `AWS::HealthLake::FHIRDatastore`.
Types ¶
type CfnFHIRDatastore ¶
type CfnFHIRDatastore interface { awscdk.CfnResource awscdk.IInspectable AttrDatastoreArn() *string AttrDatastoreEndpoint() *string AttrDatastoreId() *string AttrDatastoreStatus() *string CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string CreationStack() *[]*string DatastoreName() *string SetDatastoreName(val *string) DatastoreTypeVersion() *string SetDatastoreTypeVersion(val *string) LogicalId() *string Node() constructs.Node PreloadDataConfig() interface{} SetPreloadDataConfig(val interface{}) Ref() *string SseConfiguration() interface{} SetSseConfiguration(val interface{}) Stack() awscdk.Stack Tags() awscdk.TagManager UpdatedProperites() *map[string]interface{} AddDeletionOverride(path *string) AddDependsOn(target awscdk.CfnResource) AddMetadata(key *string, value interface{}) AddOverride(path *string, value interface{}) AddPropertyDeletionOverride(propertyPath *string) AddPropertyOverride(propertyPath *string, value interface{}) ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) GetAtt(attributeName *string) awscdk.Reference GetMetadata(key *string) interface{} Inspect(inspector awscdk.TreeInspector) OverrideLogicalId(newLogicalId *string) RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::HealthLake::FHIRDatastore`.
TODO: EXAMPLE
func NewCfnFHIRDatastore ¶
func NewCfnFHIRDatastore(scope constructs.Construct, id *string, props *CfnFHIRDatastoreProps) CfnFHIRDatastore
Create a new `AWS::HealthLake::FHIRDatastore`.
type CfnFHIRDatastoreProps ¶
type CfnFHIRDatastoreProps struct { // `AWS::HealthLake::FHIRDatastore.DatastoreName`. DatastoreName *string `json:"datastoreName"` // `AWS::HealthLake::FHIRDatastore.DatastoreTypeVersion`. DatastoreTypeVersion *string `json:"datastoreTypeVersion"` // `AWS::HealthLake::FHIRDatastore.PreloadDataConfig`. PreloadDataConfig interface{} `json:"preloadDataConfig"` // `AWS::HealthLake::FHIRDatastore.SseConfiguration`. SseConfiguration interface{} `json:"sseConfiguration"` // `AWS::HealthLake::FHIRDatastore.Tags`. Tags *[]*awscdk.CfnTag `json:"tags"` }
Properties for defining a `AWS::HealthLake::FHIRDatastore`.
TODO: EXAMPLE
type CfnFHIRDatastore_KmsEncryptionConfigProperty ¶
type CfnFHIRDatastore_KmsEncryptionConfigProperty struct { // `CfnFHIRDatastore.KmsEncryptionConfigProperty.CmkType`. CmkType *string `json:"cmkType"` // `CfnFHIRDatastore.KmsEncryptionConfigProperty.KmsKeyId`. KmsKeyId *string `json:"kmsKeyId"` }
TODO: EXAMPLE
type CfnFHIRDatastore_PreloadDataConfigProperty ¶
type CfnFHIRDatastore_PreloadDataConfigProperty struct { // `CfnFHIRDatastore.PreloadDataConfigProperty.PreloadDataType`. PreloadDataType *string `json:"preloadDataType"` }
TODO: EXAMPLE
type CfnFHIRDatastore_SseConfigurationProperty ¶
type CfnFHIRDatastore_SseConfigurationProperty struct {
// `CfnFHIRDatastore.SseConfigurationProperty.KmsEncryptionConfig`.
KmsEncryptionConfig interface{} `json:"kmsEncryptionConfig"`
}
TODO: EXAMPLE