v1beta1

package
v0.0.0-...-274ce61 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 9, 2023 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=sfn.aws.upbound.io +versionName=v1beta1

Index

Constants

View Source
const (
	CRDGroup   = "sfn.aws.upbound.io"
	CRDVersion = "v1beta1"
)

Package type metadata.

Variables

View Source
var (
	Activity_Kind             = "Activity"
	Activity_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Activity_Kind}.String()
	Activity_KindAPIVersion   = Activity_Kind + "." + CRDGroupVersion.String()
	Activity_GroupVersionKind = CRDGroupVersion.WithKind(Activity_Kind)
)

Repository type metadata.

View Source
var (
	// CRDGroupVersion is the API Group Version used to register the objects
	CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion}

	// SchemeBuilder is used to add go types to the GroupVersionKind scheme
	SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion}

	// AddToScheme adds the types in this group-version to the given scheme.
	AddToScheme = SchemeBuilder.AddToScheme
)
View Source
var (
	StateMachine_Kind             = "StateMachine"
	StateMachine_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: StateMachine_Kind}.String()
	StateMachine_KindAPIVersion   = StateMachine_Kind + "." + CRDGroupVersion.String()
	StateMachine_GroupVersionKind = CRDGroupVersion.WithKind(StateMachine_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type Activity

type Activity struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              ActivitySpec   `json:"spec"`
	Status            ActivityStatus `json:"status,omitempty"`
}

Activity is the Schema for the Activitys API. Provides a Step Function Activity resource. +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*Activity) DeepCopy

func (in *Activity) DeepCopy() *Activity

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Activity.

func (*Activity) DeepCopyInto

func (in *Activity) DeepCopyInto(out *Activity)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Activity) DeepCopyObject

func (in *Activity) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*Activity) GetCondition

func (mg *Activity) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this Activity.

func (*Activity) GetConnectionDetailsMapping

func (tr *Activity) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this Activity

func (*Activity) GetDeletionPolicy

func (mg *Activity) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this Activity.

func (*Activity) GetID

func (tr *Activity) GetID() string

GetID returns ID of underlying Terraform resource of this Activity

func (*Activity) GetManagementPolicy

func (mg *Activity) GetManagementPolicy() xpv1.ManagementPolicy

GetManagementPolicy of this Activity.

func (*Activity) GetObservation

func (tr *Activity) GetObservation() (map[string]any, error)

GetObservation of this Activity

func (*Activity) GetParameters

func (tr *Activity) GetParameters() (map[string]any, error)

GetParameters of this Activity

func (*Activity) GetProviderConfigReference

func (mg *Activity) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this Activity.

func (*Activity) GetProviderReference

func (mg *Activity) GetProviderReference() *xpv1.Reference

GetProviderReference of this Activity. Deprecated: Use GetProviderConfigReference.

func (*Activity) GetPublishConnectionDetailsTo

func (mg *Activity) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this Activity.

func (*Activity) GetTerraformResourceType

func (mg *Activity) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Activity

func (*Activity) GetTerraformSchemaVersion

func (tr *Activity) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Activity) GetWriteConnectionSecretToReference

func (mg *Activity) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this Activity.

func (*Activity) LateInitialize

func (tr *Activity) LateInitialize(attrs []byte) (bool, error)

LateInitialize this Activity using its observed tfState. returns True if there are any spec changes for the resource.

func (*Activity) SetConditions

func (mg *Activity) SetConditions(c ...xpv1.Condition)

SetConditions of this Activity.

func (*Activity) SetDeletionPolicy

func (mg *Activity) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this Activity.

func (*Activity) SetManagementPolicy

func (mg *Activity) SetManagementPolicy(r xpv1.ManagementPolicy)

SetManagementPolicy of this Activity.

func (*Activity) SetObservation

func (tr *Activity) SetObservation(obs map[string]any) error

SetObservation for this Activity

func (*Activity) SetParameters

func (tr *Activity) SetParameters(params map[string]any) error

SetParameters for this Activity

func (*Activity) SetProviderConfigReference

func (mg *Activity) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this Activity.

func (*Activity) SetProviderReference

func (mg *Activity) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this Activity. Deprecated: Use SetProviderConfigReference.

func (*Activity) SetPublishConnectionDetailsTo

func (mg *Activity) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this Activity.

func (*Activity) SetWriteConnectionSecretToReference

func (mg *Activity) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this Activity.

type ActivityList

type ActivityList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []Activity `json:"items"`
}

ActivityList contains a list of Activitys

func (*ActivityList) DeepCopy

func (in *ActivityList) DeepCopy() *ActivityList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivityList.

func (*ActivityList) DeepCopyInto

func (in *ActivityList) DeepCopyInto(out *ActivityList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ActivityList) DeepCopyObject

func (in *ActivityList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ActivityList) GetItems

func (l *ActivityList) GetItems() []resource.Managed

GetItems of this ActivityList.

type ActivityObservation

type ActivityObservation struct {

	// The date the activity was created.
	CreationDate *string `json:"creationDate,omitempty" tf:"creation_date,omitempty"`

	// The Amazon Resource Name (ARN) that identifies the created activity.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// Key-value map of resource tags.
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	// A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
	TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"`
}

func (*ActivityObservation) DeepCopy

func (in *ActivityObservation) DeepCopy() *ActivityObservation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivityObservation.

func (*ActivityObservation) DeepCopyInto

func (in *ActivityObservation) DeepCopyInto(out *ActivityObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ActivityParameters

type ActivityParameters struct {

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`

	// Key-value map of resource tags.
	// +kubebuilder:validation:Optional
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`
}

func (*ActivityParameters) DeepCopy

func (in *ActivityParameters) DeepCopy() *ActivityParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivityParameters.

func (*ActivityParameters) DeepCopyInto

func (in *ActivityParameters) DeepCopyInto(out *ActivityParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ActivitySpec

type ActivitySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     ActivityParameters `json:"forProvider"`
}

ActivitySpec defines the desired state of Activity

func (*ActivitySpec) DeepCopy

func (in *ActivitySpec) DeepCopy() *ActivitySpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivitySpec.

func (*ActivitySpec) DeepCopyInto

func (in *ActivitySpec) DeepCopyInto(out *ActivitySpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ActivityStatus

type ActivityStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        ActivityObservation `json:"atProvider,omitempty"`
}

ActivityStatus defines the observed state of Activity.

func (*ActivityStatus) DeepCopy

func (in *ActivityStatus) DeepCopy() *ActivityStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivityStatus.

func (*ActivityStatus) DeepCopyInto

func (in *ActivityStatus) DeepCopyInto(out *ActivityStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LoggingConfigurationObservation

type LoggingConfigurationObservation struct {

	// Determines whether execution data is included in your log. When set to false, data is excluded.
	IncludeExecutionData *bool `json:"includeExecutionData,omitempty" tf:"include_execution_data,omitempty"`

	// Defines which category of execution history events are logged. Valid values: ALL, ERROR, FATAL, OFF
	Level *string `json:"level,omitempty" tf:"level,omitempty"`

	// Amazon Resource Name (ARN) of a CloudWatch log group. Make sure the State Machine has the correct IAM policies for logging. The ARN must end with :*
	LogDestination *string `json:"logDestination,omitempty" tf:"log_destination,omitempty"`
}

func (*LoggingConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingConfigurationObservation.

func (*LoggingConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type LoggingConfigurationParameters

type LoggingConfigurationParameters struct {

	// Determines whether execution data is included in your log. When set to false, data is excluded.
	// +kubebuilder:validation:Optional
	IncludeExecutionData *bool `json:"includeExecutionData,omitempty" tf:"include_execution_data,omitempty"`

	// Defines which category of execution history events are logged. Valid values: ALL, ERROR, FATAL, OFF
	// +kubebuilder:validation:Optional
	Level *string `json:"level,omitempty" tf:"level,omitempty"`

	// Amazon Resource Name (ARN) of a CloudWatch log group. Make sure the State Machine has the correct IAM policies for logging. The ARN must end with :*
	// +kubebuilder:validation:Optional
	LogDestination *string `json:"logDestination,omitempty" tf:"log_destination,omitempty"`
}

func (*LoggingConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingConfigurationParameters.

func (*LoggingConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type StateMachine

type StateMachine struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.definition)",message="definition is a required parameter"
	Spec   StateMachineSpec   `json:"spec"`
	Status StateMachineStatus `json:"status,omitempty"`
}

StateMachine is the Schema for the StateMachines API. Provides a Step Function State Machine resource. +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*StateMachine) DeepCopy

func (in *StateMachine) DeepCopy() *StateMachine

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachine.

func (*StateMachine) DeepCopyInto

func (in *StateMachine) DeepCopyInto(out *StateMachine)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StateMachine) DeepCopyObject

func (in *StateMachine) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*StateMachine) GetCondition

func (mg *StateMachine) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this StateMachine.

func (*StateMachine) GetConnectionDetailsMapping

func (tr *StateMachine) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this StateMachine

func (*StateMachine) GetDeletionPolicy

func (mg *StateMachine) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this StateMachine.

func (*StateMachine) GetID

func (tr *StateMachine) GetID() string

GetID returns ID of underlying Terraform resource of this StateMachine

func (*StateMachine) GetManagementPolicy

func (mg *StateMachine) GetManagementPolicy() xpv1.ManagementPolicy

GetManagementPolicy of this StateMachine.

func (*StateMachine) GetObservation

func (tr *StateMachine) GetObservation() (map[string]any, error)

GetObservation of this StateMachine

func (*StateMachine) GetParameters

func (tr *StateMachine) GetParameters() (map[string]any, error)

GetParameters of this StateMachine

func (*StateMachine) GetProviderConfigReference

func (mg *StateMachine) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this StateMachine.

func (*StateMachine) GetProviderReference

func (mg *StateMachine) GetProviderReference() *xpv1.Reference

GetProviderReference of this StateMachine. Deprecated: Use GetProviderConfigReference.

func (*StateMachine) GetPublishConnectionDetailsTo

func (mg *StateMachine) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this StateMachine.

func (*StateMachine) GetTerraformResourceType

func (mg *StateMachine) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this StateMachine

func (*StateMachine) GetTerraformSchemaVersion

func (tr *StateMachine) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*StateMachine) GetWriteConnectionSecretToReference

func (mg *StateMachine) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this StateMachine.

func (*StateMachine) LateInitialize

func (tr *StateMachine) LateInitialize(attrs []byte) (bool, error)

LateInitialize this StateMachine using its observed tfState. returns True if there are any spec changes for the resource.

func (*StateMachine) ResolveReferences

func (mg *StateMachine) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this StateMachine.

func (*StateMachine) SetConditions

func (mg *StateMachine) SetConditions(c ...xpv1.Condition)

SetConditions of this StateMachine.

func (*StateMachine) SetDeletionPolicy

func (mg *StateMachine) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this StateMachine.

func (*StateMachine) SetManagementPolicy

func (mg *StateMachine) SetManagementPolicy(r xpv1.ManagementPolicy)

SetManagementPolicy of this StateMachine.

func (*StateMachine) SetObservation

func (tr *StateMachine) SetObservation(obs map[string]any) error

SetObservation for this StateMachine

func (*StateMachine) SetParameters

func (tr *StateMachine) SetParameters(params map[string]any) error

SetParameters for this StateMachine

func (*StateMachine) SetProviderConfigReference

func (mg *StateMachine) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this StateMachine.

func (*StateMachine) SetProviderReference

func (mg *StateMachine) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this StateMachine. Deprecated: Use SetProviderConfigReference.

func (*StateMachine) SetPublishConnectionDetailsTo

func (mg *StateMachine) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this StateMachine.

func (*StateMachine) SetWriteConnectionSecretToReference

func (mg *StateMachine) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this StateMachine.

type StateMachineList

type StateMachineList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []StateMachine `json:"items"`
}

StateMachineList contains a list of StateMachines

func (*StateMachineList) DeepCopy

func (in *StateMachineList) DeepCopy() *StateMachineList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineList.

func (*StateMachineList) DeepCopyInto

func (in *StateMachineList) DeepCopyInto(out *StateMachineList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StateMachineList) DeepCopyObject

func (in *StateMachineList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*StateMachineList) GetItems

func (l *StateMachineList) GetItems() []resource.Managed

GetItems of this StateMachineList.

type StateMachineObservation

type StateMachineObservation struct {

	// The ARN of the state machine.
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// The date the state machine was created.
	CreationDate *string `json:"creationDate,omitempty" tf:"creation_date,omitempty"`

	// The Amazon States Language definition of the state machine.
	Definition *string `json:"definition,omitempty" tf:"definition,omitempty"`

	// The ARN of the state machine.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// Defines what execution history events are logged and where they are logged. The logging_configuration parameter is only valid when type is set to EXPRESS. Defaults to OFF. For more information see Logging Express Workflows and Log Levels in the AWS Step Functions User Guide.
	LoggingConfiguration []LoggingConfigurationObservation `json:"loggingConfiguration,omitempty" tf:"logging_configuration,omitempty"`

	// The Amazon Resource Name (ARN) of the IAM role to use for this state machine.
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// The current status of the state machine. Either ACTIVE or DELETING.
	Status *string `json:"status,omitempty" tf:"status,omitempty"`

	// Key-value map of resource tags.
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	// A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
	TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"`

	// Selects whether AWS X-Ray tracing is enabled.
	TracingConfiguration []TracingConfigurationObservation `json:"tracingConfiguration,omitempty" tf:"tracing_configuration,omitempty"`

	// Determines whether a Standard or Express state machine is created. The default is STANDARD. You cannot update the type of a state machine once it has been created. Valid values: STANDARD, EXPRESS.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*StateMachineObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineObservation.

func (*StateMachineObservation) DeepCopyInto

func (in *StateMachineObservation) DeepCopyInto(out *StateMachineObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type StateMachineParameters

type StateMachineParameters struct {

	// The Amazon States Language definition of the state machine.
	// +kubebuilder:validation:Optional
	Definition *string `json:"definition,omitempty" tf:"definition,omitempty"`

	// Defines what execution history events are logged and where they are logged. The logging_configuration parameter is only valid when type is set to EXPRESS. Defaults to OFF. For more information see Logging Express Workflows and Log Levels in the AWS Step Functions User Guide.
	// +kubebuilder:validation:Optional
	LoggingConfiguration []LoggingConfigurationParameters `json:"loggingConfiguration,omitempty" tf:"logging_configuration,omitempty"`

	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`

	// The Amazon Resource Name (ARN) of the IAM role to use for this state machine.
	// +crossplane:generate:reference:type=github.com/spirosco/upbound-provider-aws/apis/iam/v1beta1.Role
	// +kubebuilder:validation:Optional
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// Reference to a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"`

	// Selector for a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"`

	// Key-value map of resource tags.
	// +kubebuilder:validation:Optional
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	// Selects whether AWS X-Ray tracing is enabled.
	// +kubebuilder:validation:Optional
	TracingConfiguration []TracingConfigurationParameters `json:"tracingConfiguration,omitempty" tf:"tracing_configuration,omitempty"`

	// Determines whether a Standard or Express state machine is created. The default is STANDARD. You cannot update the type of a state machine once it has been created. Valid values: STANDARD, EXPRESS.
	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*StateMachineParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineParameters.

func (*StateMachineParameters) DeepCopyInto

func (in *StateMachineParameters) DeepCopyInto(out *StateMachineParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type StateMachineSpec

type StateMachineSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     StateMachineParameters `json:"forProvider"`
}

StateMachineSpec defines the desired state of StateMachine

func (*StateMachineSpec) DeepCopy

func (in *StateMachineSpec) DeepCopy() *StateMachineSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineSpec.

func (*StateMachineSpec) DeepCopyInto

func (in *StateMachineSpec) DeepCopyInto(out *StateMachineSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type StateMachineStatus

type StateMachineStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        StateMachineObservation `json:"atProvider,omitempty"`
}

StateMachineStatus defines the observed state of StateMachine.

func (*StateMachineStatus) DeepCopy

func (in *StateMachineStatus) DeepCopy() *StateMachineStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineStatus.

func (*StateMachineStatus) DeepCopyInto

func (in *StateMachineStatus) DeepCopyInto(out *StateMachineStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type TracingConfigurationObservation

type TracingConfigurationObservation struct {

	// When set to true, AWS X-Ray tracing is enabled. Make sure the State Machine has the correct IAM policies for logging. See the AWS Step Functions Developer Guide for details.
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`
}

func (*TracingConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TracingConfigurationObservation.

func (*TracingConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type TracingConfigurationParameters

type TracingConfigurationParameters struct {

	// When set to true, AWS X-Ray tracing is enabled. Make sure the State Machine has the correct IAM policies for logging. See the AWS Step Functions Developer Guide for details.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`
}

func (*TracingConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TracingConfigurationParameters.

func (*TracingConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL