Class Application
- java.lang.Object
-
- software.amazon.awssdk.services.appstream.model.Application
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<Application.Builder,Application>
@Generated("software.amazon.awssdk:codegen") public final class Application extends Object implements SdkPojo, Serializable, ToCopyableBuilder<Application.Builder,Application>
Describes an application in the application catalog.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceApplication.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringappBlockArn()The app block ARN of the application.Stringarn()The ARN of the application.static Application.Builderbuilder()InstantcreatedTime()The time at which the application was created within the app block.Stringdescription()The description of the application.StringdisplayName()The application name to display.Booleanenabled()If there is a problem, the application can be disabled after image creation.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()booleanhasInstanceFamilies()For responses, this returns true if the service returned a value for the InstanceFamilies property.booleanhasMetadata()For responses, this returns true if the service returned a value for the Metadata property.booleanhasPlatforms()For responses, this returns true if the service returned a value for the Platforms property.S3LocationiconS3Location()The S3 location of the application icon.StringiconURL()The URL for the application icon.List<String>instanceFamilies()The instance families for the application.StringlaunchParameters()The arguments that are passed to the application at launch.StringlaunchPath()The path to the application executable in the instance.Map<String,String>metadata()Additional attributes that describe the application.Stringname()The name of the application.List<PlatformType>platforms()The platforms on which the application can run.List<String>platformsAsStrings()The platforms on which the application can run.Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends Application.Builder>serializableBuilderClass()Application.BuildertoBuilder()StringtoString()Returns a string representation of this object.StringworkingDirectory()The working directory for the application.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
name
public final String name()
The name of the application.
- Returns:
- The name of the application.
-
displayName
public final String displayName()
The application name to display.
- Returns:
- The application name to display.
-
iconURL
public final String iconURL()
The URL for the application icon. This URL might be time-limited.
- Returns:
- The URL for the application icon. This URL might be time-limited.
-
launchPath
public final String launchPath()
The path to the application executable in the instance.
- Returns:
- The path to the application executable in the instance.
-
launchParameters
public final String launchParameters()
The arguments that are passed to the application at launch.
- Returns:
- The arguments that are passed to the application at launch.
-
enabled
public final Boolean enabled()
If there is a problem, the application can be disabled after image creation.
- Returns:
- If there is a problem, the application can be disabled after image creation.
-
hasMetadata
public final boolean hasMetadata()
For responses, this returns true if the service returned a value for the Metadata property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
metadata
public final Map<String,String> metadata()
Additional attributes that describe the application.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasMetadata()method.- Returns:
- Additional attributes that describe the application.
-
workingDirectory
public final String workingDirectory()
The working directory for the application.
- Returns:
- The working directory for the application.
-
description
public final String description()
The description of the application.
- Returns:
- The description of the application.
-
arn
public final String arn()
The ARN of the application.
- Returns:
- The ARN of the application.
-
appBlockArn
public final String appBlockArn()
The app block ARN of the application.
- Returns:
- The app block ARN of the application.
-
iconS3Location
public final S3Location iconS3Location()
The S3 location of the application icon.
- Returns:
- The S3 location of the application icon.
-
platforms
public final List<PlatformType> platforms()
The platforms on which the application can run.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasPlatforms()method.- Returns:
- The platforms on which the application can run.
-
hasPlatforms
public final boolean hasPlatforms()
For responses, this returns true if the service returned a value for the Platforms property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
platformsAsStrings
public final List<String> platformsAsStrings()
The platforms on which the application can run.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasPlatforms()method.- Returns:
- The platforms on which the application can run.
-
hasInstanceFamilies
public final boolean hasInstanceFamilies()
For responses, this returns true if the service returned a value for the InstanceFamilies property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
instanceFamilies
public final List<String> instanceFamilies()
The instance families for the application.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasInstanceFamilies()method.- Returns:
- The instance families for the application.
-
createdTime
public final Instant createdTime()
The time at which the application was created within the app block.
- Returns:
- The time at which the application was created within the app block.
-
toBuilder
public Application.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<Application.Builder,Application>
-
builder
public static Application.Builder builder()
-
serializableBuilderClass
public static Class<? extends Application.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-